Default map and format from clang-format
This commit is contained in:
parent
6d90e7338a
commit
dc36454609
8 changed files with 15 additions and 19 deletions
|
|
@ -163,7 +163,7 @@ CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
||||||
bAuthorizeAutomaticWidgetVariableCreation=False
|
bAuthorizeAutomaticWidgetVariableCreation=False
|
||||||
|
|
||||||
[/Script/EngineSettings.GameMapsSettings]
|
[/Script/EngineSettings.GameMapsSettings]
|
||||||
EditorStartupMap=/Engine/Maps/Templates/OpenWorld.OpenWorld
|
EditorStartupMap=/Game/Levels/Main.Main
|
||||||
LocalMapOptions=
|
LocalMapOptions=
|
||||||
TransitionMap=None
|
TransitionMap=None
|
||||||
bUseSplitscreen=False
|
bUseSplitscreen=False
|
||||||
|
|
@ -172,7 +172,7 @@ ThreePlayerSplitscreenLayout=FavorTop
|
||||||
FourPlayerSplitscreenLayout=Grid
|
FourPlayerSplitscreenLayout=Grid
|
||||||
bOffsetPlayerGamepadIds=False
|
bOffsetPlayerGamepadIds=False
|
||||||
GameInstanceClass=/Script/Engine.GameInstance
|
GameInstanceClass=/Script/Engine.GameInstance
|
||||||
GameDefaultMap=/Engine/Maps/Templates/OpenWorld.OpenWorld
|
GameDefaultMap=/Game/Levels/Main.Main
|
||||||
ServerDefaultMap=/Engine/Maps/Entry.Entry
|
ServerDefaultMap=/Engine/Maps/Entry.Entry
|
||||||
GlobalDefaultGameMode=/Script/Engine.GameModeBase
|
GlobalDefaultGameMode=/Script/Engine.GameModeBase
|
||||||
GlobalDefaultServerGameMode=None
|
GlobalDefaultServerGameMode=None
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
// Fill out your copyright notice in the Description page of Project Settings.
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||||||
|
|
||||||
using UnrealBuildTool;
|
using UnrealBuildTool;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
public class minicookTarget : TargetRules
|
public class minicookTarget : TargetRules
|
||||||
{
|
{
|
||||||
|
|
@ -10,6 +9,6 @@ public class minicookTarget : TargetRules
|
||||||
Type = TargetType.Game;
|
Type = TargetType.Game;
|
||||||
DefaultBuildSettings = BuildSettingsVersion.V2;
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||||||
|
|
||||||
ExtraModuleNames.AddRange( new string[] { "minicook" } );
|
ExtraModuleNames.AddRange(new[] {"minicook"});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,17 +7,17 @@ public class minicook : ModuleRules
|
||||||
public minicook(ReadOnlyTargetRules Target) : base(Target)
|
public minicook(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||||
|
|
||||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
|
|
||||||
|
|
||||||
PrivateDependencyModuleNames.AddRange(new string[] { });
|
PublicDependencyModuleNames.AddRange(new[] {"Core", "CoreUObject", "Engine", "InputCore"});
|
||||||
|
|
||||||
|
PrivateDependencyModuleNames.AddRange(new string[] { });
|
||||||
|
|
||||||
// Uncomment if you are using Slate UI
|
// Uncomment if you are using Slate UI
|
||||||
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
||||||
|
|
||||||
// Uncomment if you are using online features
|
// Uncomment if you are using online features
|
||||||
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
||||||
|
|
||||||
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
|
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -3,4 +3,4 @@
|
||||||
#include "minicook.h"
|
#include "minicook.h"
|
||||||
#include "Modules/ModuleManager.h"
|
#include "Modules/ModuleManager.h"
|
||||||
|
|
||||||
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, minicook, "minicook" );
|
IMPLEMENT_PRIMARY_GAME_MODULE(FDefaultGameModuleImpl, minicook, "minicook");
|
||||||
|
|
|
||||||
|
|
@ -3,4 +3,3 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
#include "CoreMinimal.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
// Fill out your copyright notice in the Description page of Project Settings.
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||||||
|
|
||||||
|
|
||||||
#include "minicookGameModeBase.h"
|
#include "minicookGameModeBase.h"
|
||||||
|
|
||||||
|
|
@ -13,5 +13,5 @@ UCLASS()
|
||||||
class MINICOOK_API AminicookGameModeBase : public AGameModeBase
|
class MINICOOK_API AminicookGameModeBase : public AGameModeBase
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
// Fill out your copyright notice in the Description page of Project Settings.
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||||||
|
|
||||||
using UnrealBuildTool;
|
using UnrealBuildTool;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
public class minicookEditorTarget : TargetRules
|
public class minicookEditorTarget : TargetRules
|
||||||
{
|
{
|
||||||
|
|
@ -10,6 +9,6 @@ public class minicookEditorTarget : TargetRules
|
||||||
Type = TargetType.Editor;
|
Type = TargetType.Editor;
|
||||||
DefaultBuildSettings = BuildSettingsVersion.V2;
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||||||
|
|
||||||
ExtraModuleNames.AddRange( new string[] { "minicook" } );
|
ExtraModuleNames.AddRange(new[] {"minicook"});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue