feat(char-spawn): Fase 4 — DT_Maps + pawn reposicionado na pos do DB
Cliente UE (foco da frente):
- FZMMOMapDef + FZMMOMapSpawn (Source/ZMMO/Data/World/MapDef.h) — row do
DT_Maps com MapId/DisplayName/ClientLevel/Spawns[] taggeados
- DT_Maps.uasset (Content/ZMMO/Data/World/) — 1 row "TestWorld" mapId=1
apontando pra L_TestWorld + spawn "default" em (0,0,200)
- L_TestWorld movido: /Game/ThirdPerson/TestWorld -> /Game/ZMMO/Maps/World/L_TestWorld
(75 ext actors WP duplicados, original deletado)
- ZMMOCharSummary.MapName (FString) -> MapId (int32)
- UIUserLobbyScreen_Base parseia uint16 mapId no S_CHAR_SELECT_OK + chama
Flow->TravelToMapById(mapId) + Flow->SetPendingSpawnPose(pos, yaw)
- UIFrontEndFlowSubsystem: MapsTableAsset (config), FindMapDef,
ResolveLevelPathByMapId, TravelToMapById, SetPendingSpawnPose/Consume
- AZMMOPlayerCharacter::BeginPlay: consome PendingSpawnPose do Flow e
SetActorLocationAndRotation no pawn local (substitui PlayerStart default)
- DefaultGame.ini: MapsTableAsset=/Game/ZMMO/Data/World/DT_Maps.DT_Maps
- .gitignore: + .vscode/
Outras mudancas no working tree (paralelas a esta frente):
- Content/AutoCreated/MMOWidget/Widgets/WBP_* (boot/login/charselect/etc.)
- Content/AutoCreated/MMOWidget/Fonts/Font_* + font_*_Face
- Refatoracao de fontes ZMMO/UI/Fonts (FF_* deletadas, F_* + Face)
- Content/__ExternalActors__/ZMMO/Debug/Maps/L_Test_UI/* (75 actors)
- Content/Editor/ZeusUMGForge/FontMap.uasset
- Content/ZMMO/UI/Shared/UI_CheckBox_Master.uasset
- Content/ExternalContent/{Fab,Marketplace,Megascans}/.gitkeep
- Content/ThirdPerson/Menu.umap
This commit is contained in:
627
ZMMO.code-workspace
Normal file
627
ZMMO.code-workspace
Normal file
@@ -0,0 +1,627 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"name": "ZMMO",
|
||||
"path": "."
|
||||
},
|
||||
{
|
||||
"name": "UE5",
|
||||
"path": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"typescript.tsc.autoDetect": "off",
|
||||
"npm.autoDetect": "off",
|
||||
"terminal.integrated.env.windows": {
|
||||
"PATH": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.412\\win-x64;${env:PATH}",
|
||||
"DOTNET_ROOT": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.412\\win-x64",
|
||||
"DOTNET_HOST_PATH": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.412\\win-x64\\dotnet.exe",
|
||||
"DOTNET_MULTILEVEL_LOOKUP": "0",
|
||||
"DOTNET_ROLL_FORWARD": "LatestMajor"
|
||||
}
|
||||
},
|
||||
"extensions": {
|
||||
"recommendations": [
|
||||
"ms-vscode.cpptools",
|
||||
"ms-dotnettools.csharp"
|
||||
]
|
||||
},
|
||||
"tasks": {
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "ZMMO Win64 Debug Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Debug",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Debug Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Debug",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMO Win64 Debug Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Debug Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Debug",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 DebugGame Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"DebugGame",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 DebugGame Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"DebugGame",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMO Win64 DebugGame Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 DebugGame Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"DebugGame",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Development Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Development",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Development Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Development",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMO Win64 Development Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Development Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Development",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Test Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Test",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Test Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Test",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMO Win64 Test Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Test Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Test",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Shipping Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Shipping",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Shipping Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Shipping",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMO Win64 Shipping Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMO Win64 Shipping Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMO",
|
||||
"Win64",
|
||||
"Shipping",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 Debug Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"Debug",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 Debug Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"Debug",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMOEditor Win64 Debug Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 Debug Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"Debug",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 DebugGame Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"DebugGame",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 DebugGame Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"DebugGame",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMOEditor Win64 DebugGame Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 DebugGame Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"DebugGame",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 Development Build",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"Development",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 Development Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Build.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"Development",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"ZMMOEditor Win64 Development Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "ZMMOEditor Win64 Development Clean",
|
||||
"group": "build",
|
||||
"command": "Engine\\Build\\BatchFiles\\Clean.bat",
|
||||
"args": [
|
||||
"ZMMOEditor",
|
||||
"Win64",
|
||||
"Development",
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"launch": {
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch ZMMO (Debug)",
|
||||
"request": "launch",
|
||||
"program": "F:\\ZeusProject\\Clients\\ZMMO\\Binaries\\Win64\\UnrealGame-Win64-Debug.exe",
|
||||
"preLaunchTask": "ZMMO Win64 Debug Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMO (DebugGame)",
|
||||
"request": "launch",
|
||||
"program": "F:\\ZeusProject\\Clients\\ZMMO\\Binaries\\Win64\\UnrealGame-Win64-DebugGame.exe",
|
||||
"preLaunchTask": "ZMMO Win64 DebugGame Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMO (Development)",
|
||||
"request": "launch",
|
||||
"program": "F:\\ZeusProject\\Clients\\ZMMO\\Binaries\\Win64\\UnrealGame.exe",
|
||||
"preLaunchTask": "ZMMO Win64 Development Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMO (Test)",
|
||||
"request": "launch",
|
||||
"program": "F:\\ZeusProject\\Clients\\ZMMO\\Binaries\\Win64\\UnrealGame-Win64-Test.exe",
|
||||
"preLaunchTask": "ZMMO Win64 Test Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMO (Shipping)",
|
||||
"request": "launch",
|
||||
"program": "F:\\ZeusProject\\Clients\\ZMMO\\Binaries\\Win64\\UnrealGame-Win64-Shipping.exe",
|
||||
"preLaunchTask": "ZMMO Win64 Shipping Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMOEditor (Debug)",
|
||||
"request": "launch",
|
||||
"program": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\Win64\\UnrealEditor-Win64-Debug.exe",
|
||||
"preLaunchTask": "ZMMOEditor Win64 Debug Build",
|
||||
"args": [
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject"
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMOEditor (DebugGame)",
|
||||
"request": "launch",
|
||||
"program": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\Win64\\UnrealEditor-Win64-DebugGame.exe",
|
||||
"preLaunchTask": "ZMMOEditor Win64 DebugGame Build",
|
||||
"args": [
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject"
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Launch ZMMOEditor (Development)",
|
||||
"request": "launch",
|
||||
"program": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\Win64\\UnrealEditor.exe",
|
||||
"preLaunchTask": "ZMMOEditor Win64 Development Build",
|
||||
"args": [
|
||||
"F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject"
|
||||
],
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7",
|
||||
"stopAtEntry": false,
|
||||
"console": "integratedTerminal",
|
||||
"type": "cppvsdbg",
|
||||
"visualizerFile": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Extras\\VisualStudioDebugging\\Unreal.natvis",
|
||||
"sourceFileMap": {
|
||||
"D:\\build\\++UE5\\Sync": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Generate Project Files",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "UnrealBuildTool Win64 Development Build",
|
||||
"program": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Build\\BatchFiles\\RunUBT.bat",
|
||||
"args": [
|
||||
"-projectfiles",
|
||||
"-vscode",
|
||||
"-project=F:\\ZeusProject\\Clients\\ZMMO\\ZMMO.uproject",
|
||||
"-game",
|
||||
"-engine",
|
||||
"-dotnet"
|
||||
],
|
||||
"env": {
|
||||
"PATH": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.412\\win-x64;${env:PATH}",
|
||||
"DOTNET_ROOT": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.412\\win-x64",
|
||||
"DOTNET_HOST_PATH": "D:\\Program Files\\Epic Games\\UE_5.7\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.412\\win-x64\\dotnet.exe",
|
||||
"DOTNET_MULTILEVEL_LOOKUP": "0",
|
||||
"DOTNET_ROLL_FORWARD": "LatestMajor"
|
||||
},
|
||||
"console": "integratedTerminal",
|
||||
"stopAtEntry": false,
|
||||
"cwd": "D:\\Program Files\\Epic Games\\UE_5.7"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user