Changeset - da2390039566
[Not reviewed]
default
0 7 5
tdelude - 8 years ago 2016-07-30 06:34:56
tdelude@users.noreply.git.metahusk.com
splash screens, fixed build issues
12 files changed with 48 insertions and 17 deletions:
0 comments (0 inline, 0 general)
.hgignore
Show inline comments
 
@@ -10,6 +10,10 @@ Plugins/AdvancedSessions
 
Plugins/MainMenuLib
 
Plugins/VictoryPlugin
 
.vs/
 
WindowsNoEditor/
 
Visual Studio 2015/
 
Visual Studio 2015Templates/
 
Visual Studio 2015Projects/
 
 
*.opensdf
 
*.suo
CardinalMenu.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
Config/DefaultGame.ini
Show inline comments
 
[/Script/EngineSettings.GeneralProjectSettings]
 
ProjectID=CF9AD4A443CD0E6CBDD5178AD0A85F65
 
ProjectName=Third Person BP Game Template
 
 
[/Script/UnrealEd.ProjectPackagingSettings]
 
BuildConfiguration=PPBC_Development
 
StagingDirectory=(Path="I:/Unreal Projects/CardinalMenu")
 
FullRebuild=False
 
ForDistribution=False
 
IncludeDebugFiles=False
 
bNativizeBlueprintAssets=False
 
UsePakFile=False
 
bGenerateChunks=False
 
bChunkHardReferencesOnly=False
 
bBuildHttpChunkInstallData=False
 
HttpChunkInstallDataDirectory=(Path=)
 
HttpChunkInstallDataVersion=
 
IncludePrerequisites=True
 
IncludeCrashReporter=True
 
InternationalizationPreset=English
 
-CulturesToStage=en
 
+CulturesToStage=en
 
DefaultCulture=en
 
bCookAll=False
 
bCookMapsOnly=False
 
bCompressed=False
 
bSkipEditorContent=False
 
+DirectoriesToAlwaysStageAsUFS=(Path=)
 
Content/Cardinal/MainMenu/Blueprints/UI/DetailsPanels/ControlsSettingsDetails.uasset
Show inline comments
 
binary diff not shown
Content/Cardinal/MainMenu/Blueprints/UI/MainMenu.uasset
Show inline comments
 
binary diff not shown
Content/Cardinal/MainMenu/Blueprints/UI/Submenus/SettingsSubMenu.uasset
Show inline comments
 
binary diff not shown
Content/Splash/EdSplash.bmp
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
Content/Splash/EdSplash.uasset
Show inline comments
 
new file 100644
 
binary diff not shown
Content/Splash/Splash.bmp
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
Content/Splash/Splash.uasset
Show inline comments
 
new file 100644
 
binary diff not shown
Source/CardinalMenu.Target.cs
Show inline comments
 
@@ -8,7 +8,8 @@ public class CardinalMenuTarget : Target
 
	public CardinalMenuTarget(TargetInfo Target)
 
	{
 
		Type = TargetType.Game;
 
	}
 
        bUsesSteam = true;
 
    }
 
 
	//
 
	// TargetRules interface.
Source/CardinalMenu/CardinalMenu.Build.cs
Show inline comments
 
@@ -5,22 +5,22 @@ using UnrealBuildTool;
 
public class CardinalMenu : ModuleRules
 
{
 
	public CardinalMenu(TargetInfo Target)
 
	{
 
		PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
 
    {
 
        PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "MainMenuLib", "AdvancedSessions", "OnlineSubsystem", "OnlineSubsystemUtils", "Networking", "Sockets", "OnlineSubsystemSteam", "OnlineSubsystemNull" });
 
 
		PrivateDependencyModuleNames.AddRange(new string[] {  });
 
        PrivateDependencyModuleNames.AddRange(new string[] { "OnlineSubsystem", "Sockets", "Networking", "OnlineSubsystemSteam", "OnlineSubsystemNull" });
 
 
        // Uncomment if you are using Slate UI
 
        // PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
 
 
		// Uncomment if you are using Slate UI
 
		// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
 
		
 
		// Uncomment if you are using online features
 
		// PrivateDependencyModuleNames.Add("OnlineSubsystem");
 
		// if ((Target.Platform == UnrealTargetPlatform.Win32) || (Target.Platform == UnrealTargetPlatform.Win64))
 
		// {
 
		//		if (UEBuildConfiguration.bCompileSteamOSS == true)
 
		//		{
 
		//			DynamicallyLoadedModuleNames.Add("OnlineSubsystemSteam");
 
		//		}
 
		// }
 
	}
 
        // Uncomment if you are using online features
 
        //PrivateDependencyModuleNames.Add("OnlineSubsystem");
 
        //if ((Target.Platform == UnrealTargetPlatform.Win32) || (Target.Platform == UnrealTargetPlatform.Win64))
 
        //{
 
        //		if (UEBuildConfiguration.bCompileSteamOSS == true)
 
        //		{
 
        //			DynamicallyLoadedModuleNames.Add("OnlineSubsystemSteam");
 
        //		}
 
        // }
 
    }
 
}
0 comments (0 inline, 0 general)