Init settings and content
This commit is contained in:
parent
c2336372d3
commit
08330b2263
7
.gitattributes
vendored
Normal file
7
.gitattributes
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Content/Models/** filter=lfs diff=lfs merge=lfs -text
|
||||||
|
Content/MaterialsS/** filter=lfs diff=lfs merge=lfs -text
|
||||||
|
Content/Fonts/** filter=lfs diff=lfs merge=lfs -text
|
||||||
|
Content/Foliages/** filter=lfs diff=lfs merge=lfs -text
|
||||||
|
Content/Audio/Sounds/** filter=lfs diff=lfs merge=lfs -text
|
||||||
|
Content/Audio/Music/** filter=lfs diff=lfs merge=lfs -text
|
||||||
|
Content/UI/Textures/** filter=lfs diff=lfs merge=lfs -text
|
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Binaries
|
||||||
|
DerivedDataCache
|
||||||
|
Intermediate
|
||||||
|
Saved
|
||||||
|
.vscode
|
||||||
|
.vs
|
||||||
|
*.VC.db
|
||||||
|
*.opensdf
|
||||||
|
*.opendb
|
||||||
|
*.sdf
|
||||||
|
*.sln
|
||||||
|
*.suo
|
||||||
|
*.xcodeproj
|
||||||
|
*.xcworkspace
|
||||||
|
Platforms/HoloLens
|
13
.vsconfig
Normal file
13
.vsconfig
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0",
|
||||||
|
"components": [
|
||||||
|
"Microsoft.Net.Component.4.6.2.TargetingPack",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.14.36.17.6.x86.x64",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
|
||||||
|
"Microsoft.VisualStudio.Component.Windows10SDK.22000",
|
||||||
|
"Microsoft.VisualStudio.Workload.CoreEditor",
|
||||||
|
"Microsoft.VisualStudio.Workload.ManagedDesktop",
|
||||||
|
"Microsoft.VisualStudio.Workload.NativeDesktop",
|
||||||
|
"Microsoft.VisualStudio.Workload.NativeGame"
|
||||||
|
]
|
||||||
|
}
|
BIN
Build/Windows/Application.ico
Normal file
BIN
Build/Windows/Application.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
BIN
Content/Splash/EdSplash.bmp
Normal file
BIN
Content/Splash/EdSplash.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 342 KiB |
BIN
Content/Splash/Splash.bmp
Normal file
BIN
Content/Splash/Splash.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 142 B |
BIN
Lost_Edge.png
Normal file
BIN
Lost_Edge.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
15
Source/Lost_Edge.Target.cs
Normal file
15
Source/Lost_Edge.Target.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
using UnrealBuildTool;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class Lost_EdgeTarget : TargetRules
|
||||||
|
{
|
||||||
|
public Lost_EdgeTarget( TargetInfo Target) : base(Target)
|
||||||
|
{
|
||||||
|
Type = TargetType.Game;
|
||||||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||||||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
||||||
|
ExtraModuleNames.Add("Lost_Edge");
|
||||||
|
}
|
||||||
|
}
|
23
Source/Lost_Edge/Lost_Edge.Build.cs
Normal file
23
Source/Lost_Edge/Lost_Edge.Build.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
using UnrealBuildTool;
|
||||||
|
|
||||||
|
public class Lost_Edge : ModuleRules
|
||||||
|
{
|
||||||
|
public Lost_Edge(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
|
||||||
|
}
|
||||||
|
}
|
6
Source/Lost_Edge/Lost_Edge.cpp
Normal file
6
Source/Lost_Edge/Lost_Edge.cpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#include "Lost_Edge.h"
|
||||||
|
#include "Modules/ModuleManager.h"
|
||||||
|
|
||||||
|
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, Lost_Edge, "Lost_Edge" );
|
6
Source/Lost_Edge/Lost_Edge.h
Normal file
6
Source/Lost_Edge/Lost_Edge.h
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "CoreMinimal.h"
|
||||||
|
|
4
Source/Lost_Edge/Lost_EdgeGameModeBase.cpp
Normal file
4
Source/Lost_Edge/Lost_EdgeGameModeBase.cpp
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#include "Lost_EdgeGameModeBase.h"
|
||||||
|
|
17
Source/Lost_Edge/Lost_EdgeGameModeBase.h
Normal file
17
Source/Lost_Edge/Lost_EdgeGameModeBase.h
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "CoreMinimal.h"
|
||||||
|
#include "GameFramework/GameModeBase.h"
|
||||||
|
#include "Lost_EdgeGameModeBase.generated.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
UCLASS()
|
||||||
|
class LOST_EDGE_API ALost_EdgeGameModeBase : public AGameModeBase
|
||||||
|
{
|
||||||
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
};
|
15
Source/Lost_EdgeEditor.Target.cs
Normal file
15
Source/Lost_EdgeEditor.Target.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
using UnrealBuildTool;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class Lost_EdgeEditorTarget : TargetRules
|
||||||
|
{
|
||||||
|
public Lost_EdgeEditorTarget( TargetInfo Target) : base(Target)
|
||||||
|
{
|
||||||
|
Type = TargetType.Editor;
|
||||||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||||||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
||||||
|
ExtraModuleNames.Add("Lost_Edge");
|
||||||
|
}
|
||||||
|
}
|
BIN
gameIcon.ico
Normal file
BIN
gameIcon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
Loading…
Reference in New Issue
Block a user