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

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)