первые наработки по рендеру
This commit is contained in:
Vendored
+72
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"panel": "shared",
|
||||
"clear": false,
|
||||
"showReuseMessage": false
|
||||
},
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Bake: WMO cache (force)",
|
||||
"type": "process",
|
||||
"command": "c:\\Godot 4.6\\Godot_v4.6.1-stable_win64.exe",
|
||||
"args": [
|
||||
"--headless",
|
||||
"--path", "${workspaceFolder}",
|
||||
"--script", "res://src/tools/bake_wmo_cache.gd",
|
||||
"--", "--map", "Azeroth", "--force"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Bake: M2 cache (force)",
|
||||
"type": "process",
|
||||
"command": "c:\\Godot 4.6\\Godot_v4.6.1-stable_win64.exe",
|
||||
"args": [
|
||||
"--headless",
|
||||
"--path", "${workspaceFolder}",
|
||||
"--script", "res://src/tools/bake_m2_cache.gd",
|
||||
"--", "--map", "Azeroth", "--force"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Bake: terrain cache (force)",
|
||||
"type": "process",
|
||||
"command": "c:\\Godot 4.6\\Godot_v4.6.1-stable_win64.exe",
|
||||
"args": [
|
||||
"--headless",
|
||||
"--path", "${workspaceFolder}",
|
||||
"--script", "res://src/tools/bake_adt_terrain_cache.gd",
|
||||
"--", "--map", "Azeroth", "--force"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Bake: all (skip existing)",
|
||||
"type": "process",
|
||||
"command": "c:\\Godot 4.6\\Godot_v4.6.1-stable_win64.exe",
|
||||
"args": [
|
||||
"--headless",
|
||||
"--path", "${workspaceFolder}",
|
||||
"--script", "res://src/tools/bake_all.gd",
|
||||
"--", "--map", "Azeroth"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Bake: all (force)",
|
||||
"type": "process",
|
||||
"command": "c:\\Godot 4.6\\Godot_v4.6.1-stable_win64.exe",
|
||||
"args": [
|
||||
"--headless",
|
||||
"--path", "${workspaceFolder}",
|
||||
"--script", "res://src/tools/bake_all.gd",
|
||||
"--", "--map", "Azeroth", "--force"
|
||||
],
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user