Compare commits
No commits in common. "b4dcf2132499c19c2ac6209b276d93066a110274" and "a716e066cb932ea148f6b209e7777f276459984b" have entirely different histories.
b4dcf21324
...
a716e066cb
11 changed files with 34 additions and 45 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
|||
[submodule "Plugins/SkyPortal"]
|
||||
path = Plugins/SkyPortal
|
||||
url = git@codeberg.org:LUCASTUCIOUS/SkyEngine-skyportal-module.git
|
||||
url = git@185.216.25.221:lucastucious/SkyPortal-plugin.git
|
||||
|
|
|
@ -1,19 +1,7 @@
|
|||
|
||||
|
||||
[/Script/EngineSettings.GameMapsSettings]
|
||||
EditorStartupMap=/Game/Maps/TestMap.TestMap
|
||||
LocalMapOptions=
|
||||
TransitionMap=None
|
||||
bUseSplitscreen=True
|
||||
TwoPlayerSplitscreenLayout=Horizontal
|
||||
ThreePlayerSplitscreenLayout=FavorTop
|
||||
FourPlayerSplitscreenLayout=Grid
|
||||
bOffsetPlayerGamepadIds=False
|
||||
GameInstanceClass=/Game/Core/SkyGameInstance.SkyGameInstance_C
|
||||
GameDefaultMap=/Game/Maps/Menu.Menu
|
||||
ServerDefaultMap=/Engine/Maps/Entry.Entry
|
||||
GlobalDefaultGameMode=/Game/Core/SkyGameMode.SkyGameMode_C
|
||||
GlobalDefaultServerGameMode=None
|
||||
GameDefaultMap=/Engine/Maps/Templates/OpenWorld
|
||||
|
||||
[/Script/WindowsTargetPlatform.WindowsTargetSettings]
|
||||
DefaultGraphicsRHI=DefaultGraphicsRHI_Vulkan
|
||||
|
@ -89,7 +77,6 @@ FontDPI=72
|
|||
[/Script/Engine.Engine]
|
||||
+ActiveGameNameRedirects=(OldGameName="TP_Blank",NewGameName="/Script/SkyEngine")
|
||||
+ActiveGameNameRedirects=(OldGameName="/Script/TP_Blank",NewGameName="/Script/SkyEngine")
|
||||
GameViewportClientClassName=/Script/CommonUI.CommonGameViewportClient
|
||||
|
||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||
bEnablePlugin=True
|
||||
|
@ -136,5 +123,4 @@ r.ShaderCompiler.JobCacheDDC=1
|
|||
|
||||
[/Script/UnrealEd.CookerSettings]
|
||||
bEnableBuildDDCInBackground=True
|
||||
bCookOnTheFlyForLaunchOn=True
|
||||
|
||||
|
|
|
@ -111,10 +111,3 @@ bShouldAcquireMissingChunksOnLoad=False
|
|||
bShouldWarnAboutInvalidAssets=True
|
||||
MetaDataTagsForAssetRegistry=()
|
||||
|
||||
[CommonInputPlatformSettings_Windows CommonInputPlatformSettings]
|
||||
DefaultInputType=Gamepad
|
||||
|
||||
[/Script/CommonInput.CommonInputSettings]
|
||||
bEnableEnhancedInputSupport=True
|
||||
bEnableDefaultInputConfig=False
|
||||
|
||||
|
|
|
@ -29,7 +29,3 @@ DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.Defaul
|
|||
[/Script/RawInput.RawInputSettings]
|
||||
bRegisterDefaultDevice=False
|
||||
|
||||
[/Script/GameInputBase.GameInputDeveloperSettings]
|
||||
+DeviceConfigurations=(DeviceIdentifier=(VendorId=5168,ProductId=336),Description="Skylander Portal",bOverrideHardwareDeviceIdString=False,OverriddenHardwareDeviceId="",bProcessControllerButtons=True,bProcessControllerSwitchState=True,bProcessControllerAxis=True,ControllerButtonMappingData=(),ControllerAxisMappingData=(),bProcessRawReportData=True,RawReportReadingId=0,RawReportMappingData=())
|
||||
bDoNotProcessDuplicateCapabilitiesForSingleUser=True
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
Subproject commit ea75a1d07e1bcc37b37649e38dfa46bbcad5699b
|
||||
Subproject commit 652d62ed9692729adde0ce6c7dbec05b6acdfa86
|
|
@ -513,6 +513,10 @@
|
|||
"Name": "AppleImageUtils",
|
||||
"Enabled": false
|
||||
},
|
||||
{
|
||||
"Name": "EngineAssetDefinitions",
|
||||
"Enabled": false
|
||||
},
|
||||
{
|
||||
"Name": "BlueprintFileUtils",
|
||||
"Enabled": true
|
||||
|
@ -521,6 +525,20 @@
|
|||
"Name": "AdvancedRenamer",
|
||||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "GameInputWindows",
|
||||
"Enabled": true,
|
||||
"SupportedTargetPlatforms": [
|
||||
"Win64"
|
||||
]
|
||||
},
|
||||
{
|
||||
"Name": "GameInput",
|
||||
"Enabled": true,
|
||||
"SupportedTargetPlatforms": [
|
||||
"Win64"
|
||||
]
|
||||
},
|
||||
{
|
||||
"Name": "RawInput",
|
||||
"Enabled": true
|
||||
|
@ -578,10 +596,6 @@
|
|||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "JsonBlueprintUtilities",
|
||||
"Enabled": true
|
||||
},
|
||||
{
|
||||
"Name": "VisualStudioTools",
|
||||
"Enabled": true,
|
||||
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/362651520df94e4fa65492dbcba44ae2",
|
||||
|
|
|
@ -4,20 +4,20 @@ using UnrealBuildTool;
|
|||
|
||||
public class SkyEngine : ModuleRules
|
||||
{
|
||||
public SkyEngine(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
public SkyEngine(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "EnhancedInput" });
|
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "EnhancedInput" });
|
||||
PrivateDependencyModuleNames.AddRange(new string[] { });
|
||||
|
||||
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");
|
||||
|
||||
// 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
|
||||
}
|
||||
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue