More tweaks

This commit is contained in:
2024-10-09 18:10:08 -04:00
parent 403a0b4a77
commit d2a3d5b49c
3 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@@ -31,6 +31,7 @@ Platforms/**
Intermediate/**
DerivedDataCache/**
Binaries/**
User/**
.vs/**
Source/Integration/lpx-paths.hpp

9
Config/DefaultEngine.ini Normal file
View File

@@ -0,0 +1,9 @@
[/Script/EngineSettings.GameMapsSettings]
GameDefaultMap=/Game/LpxLevel.LpxLevel
GlobalDefaultGameMode=/Game/Luprex/lxGameMode.lxGameMode_C
GameInstanceClass=/Script/IntegrationV7.GameInstanceV7
GlobalDefaultServerGameMode=/Game/IntegrationGameModeBaseBP.IntegrationGameModeBaseBP_C
EditorStartupMap=/Game/LpxLevel.LpxLevel

View File

@@ -62,6 +62,7 @@ def writefile(fn, str):
INTEGRATION = os.path.dirname(os.path.abspath(sys.argv[0]))
UNREALENGINE = os.environ["HOME"] + "/UnrealEngine"
UNREALBUILDTOOL = f"{UNREALENGINE}/Engine/Binaries/DotNET/UnrealBuildTool/UnrealBuildTool.dll"
USER = os.environ["USER"]
#
# Change to the target directory.
@@ -189,6 +190,7 @@ LLDBINIT=f"command script import {UNREALENGINE}/Engine/Extras/LLDBDataFormatters
for config in WORKSPACE["launch"]["configurations"]:
config["type"] = "lldb"
config["initCommands"] = [ LLDBINIT ]
config["args"] = [ f"{INTEGRATION}/Integration.uproject", f"-userdir=User/{USER}" ]
config.pop("visualizerFile", None)
config.pop("showDisplayString", None)