15 changed files with 214 additions and 0 deletions
@ -0,0 +1 @@
|
||||
Content/** filter=lfs diff=lfs merge=lfs -text |
@ -0,0 +1,45 @@
|
||||
|
||||
|
||||
[/Script/EngineSettings.GameMapsSettings] |
||||
GameDefaultMap=/Game/StarterContent/Maps/Minimal_Default |
||||
|
||||
|
||||
EditorStartupMap=/Game/StarterContent/Maps/Minimal_Default |
||||
|
||||
[/Script/HardwareTargeting.HardwareTargetingSettings] |
||||
TargetedHardwareClass=Desktop |
||||
AppliedTargetedHardwareClass=Desktop |
||||
DefaultGraphicsPerformance=Maximum |
||||
AppliedDefaultGraphicsPerformance=Maximum |
||||
|
||||
[/Script/WindowsTargetPlatform.WindowsTargetSettings] |
||||
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 |
||||
|
||||
[/Script/Engine.RendererSettings] |
||||
r.GenerateMeshDistanceFields=True |
||||
r.DynamicGlobalIlluminationMethod=1 |
||||
r.ReflectionMethod=1 |
||||
r.Shadow.Virtual.Enable=1 |
||||
|
||||
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings] |
||||
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet' |
||||
|
||||
[/Script/Engine.Engine] |
||||
+ActiveGameNameRedirects=(OldGameName="TP_Blank",NewGameName="/Script/firstLook") |
||||
+ActiveGameNameRedirects=(OldGameName="/Script/TP_Blank",NewGameName="/Script/firstLook") |
||||
+ActiveClassRedirects=(OldClassName="TP_BlankGameModeBase",NewClassName="firstLookGameModeBase") |
||||
|
||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings] |
||||
bEnablePlugin=True |
||||
bAllowNetworkConnection=True |
||||
SecurityToken=1A857DC748885ADD8294F8BFD284776D |
||||
bIncludeInShipping=False |
||||
bAllowExternalStartInShipping=False |
||||
bCompileAFSProject=False |
||||
bUseCompression=False |
||||
bLogFiles=False |
||||
bReportStats=False |
||||
ConnectionType=USBOnly |
||||
bUseManualIPAddress=False |
||||
ManualIPAddress= |
||||
|
@ -0,0 +1,7 @@
|
||||
|
||||
[/Script/EngineSettings.GeneralProjectSettings] |
||||
ProjectID=1BB5F68D49C134CC483FF2901531A181 |
||||
|
||||
[StartupActions] |
||||
bAddPacks=True |
||||
InsertPack=(PackSource="StarterContent.upack",PackName="StarterContent") |
@ -0,0 +1,31 @@
|
||||
|
||||
|
||||
[/Script/HoloLensPlatformEditor.HoloLensTargetSettings] |
||||
bBuildForEmulation=False |
||||
bBuildForDevice=True |
||||
bUseNameForLogo=True |
||||
bBuildForRetailWindowsStore=False |
||||
bAutoIncrementVersion=False |
||||
bShouldCreateAppInstaller=False |
||||
AppInstallerInstallationURL= |
||||
HoursBetweenUpdateChecks=0 |
||||
bEnablePIXProfiling=False |
||||
TileBackgroundColor=(B=64,G=0,R=0,A=255) |
||||
SplashScreenBackgroundColor=(B=64,G=0,R=0,A=255) |
||||
+PerCultureResources=(CultureId="",Strings=(PackageDisplayName="",PublisherDisplayName="",PackageDescription="",ApplicationDisplayName="",ApplicationDescription=""),Images=()) |
||||
TargetDeviceFamily=Windows.Holographic |
||||
MinimumPlatformVersion= |
||||
MaximumPlatformVersionTested=10.0.18362.0 |
||||
MaxTrianglesPerCubicMeter=500.000000 |
||||
SpatialMeshingVolumeSize=20.000000 |
||||
CompilerVersion=Default |
||||
Windows10SDKVersion=10.0.18362.0 |
||||
+CapabilityList=internetClientServer |
||||
+CapabilityList=privateNetworkClientServer |
||||
+Uap2CapabilityList=spatialPerception |
||||
bSetDefaultCapabilities=False |
||||
SpatializationPlugin= |
||||
ReverbPlugin= |
||||
OcclusionPlugin= |
||||
SoundCueCookQualityIndex=-1 |
||||
|
@ -1,2 +1,8 @@
|
||||
<<<<<<< HEAD |
||||
# first_unreal_repo |
||||
|
||||
======= |
||||
# firstLook |
||||
|
||||
Developed with Unreal Engine 5 |
||||
>>>>>>> 562642d (Initial commit) |
||||
|
@ -0,0 +1,14 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved. |
||||
|
||||
using UnrealBuildTool; |
||||
using System.Collections.Generic; |
||||
|
||||
public class firstLookTarget : TargetRules |
||||
{ |
||||
public firstLookTarget( TargetInfo Target) : base(Target) |
||||
{ |
||||
Type = TargetType.Game; |
||||
DefaultBuildSettings = BuildSettingsVersion.V2; |
||||
ExtraModuleNames.AddRange( new string[] { "firstLook" } ); |
||||
} |
||||
} |
@ -0,0 +1,23 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved. |
||||
|
||||
using UnrealBuildTool; |
||||
|
||||
public class firstLook : ModuleRules |
||||
{ |
||||
public firstLook(ReadOnlyTargetRules Target) : base(Target) |
||||
{ |
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; |
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" }); |
||||
|
||||
PrivateDependencyModuleNames.AddRange(new string[] { }); |
||||
|
||||
// Uncomment if you are using Slate UI |
||||
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" }); |
||||
|
||||
// Uncomment if you are using online features |
||||
// PrivateDependencyModuleNames.Add("OnlineSubsystem"); |
||||
|
||||
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true |
||||
} |
||||
} |
@ -0,0 +1,6 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
#include "firstLook.h" |
||||
#include "Modules/ModuleManager.h" |
||||
|
||||
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, firstLook, "firstLook" ); |
@ -0,0 +1,6 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
#pragma once |
||||
|
||||
#include "CoreMinimal.h" |
||||
|
@ -0,0 +1,5 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
|
||||
#include "firstLookGameModeBase.h" |
||||
|
@ -0,0 +1,17 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
#pragma once |
||||
|
||||
#include "CoreMinimal.h" |
||||
#include "GameFramework/GameModeBase.h" |
||||
#include "firstLookGameModeBase.generated.h" |
||||
|
||||
/**
|
||||
*
|
||||
*/ |
||||
UCLASS() |
||||
class FIRSTLOOK_API AfirstLookGameModeBase : public AGameModeBase |
||||
{ |
||||
GENERATED_BODY() |
||||
|
||||
}; |
@ -0,0 +1,14 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved. |
||||
|
||||
using UnrealBuildTool; |
||||
using System.Collections.Generic; |
||||
|
||||
public class firstLookEditorTarget : TargetRules |
||||
{ |
||||
public firstLookEditorTarget( TargetInfo Target) : base(Target) |
||||
{ |
||||
Type = TargetType.Editor; |
||||
DefaultBuildSettings = BuildSettingsVersion.V2; |
||||
ExtraModuleNames.AddRange( new string[] { "firstLook" } ); |
||||
} |
||||
} |
@ -0,0 +1,22 @@
|
||||
{ |
||||
"FileVersion": 3, |
||||
"EngineAssociation": "5.0", |
||||
"Category": "", |
||||
"Description": "", |
||||
"Modules": [ |
||||
{ |
||||
"Name": "firstLook", |
||||
"Type": "Runtime", |
||||
"LoadingPhase": "Default" |
||||
} |
||||
], |
||||
"Plugins": [ |
||||
{ |
||||
"Name": "ModelingToolsEditorMode", |
||||
"Enabled": true, |
||||
"TargetAllowList": [ |
||||
"Editor" |
||||
] |
||||
} |
||||
] |
||||
} |
Loading…
Reference in new issue