update the generator tool & added unmarshalling a whole directory

This commit is contained in:
Stefan Stefanov 2024-04-21 19:17:27 +03:00
parent 81d9632396
commit 973af01380
7 changed files with 49 additions and 39 deletions

View file

@ -1,7 +1,7 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#322C2D",
"titleBar.activeBackground": "#463E3F",
"titleBar.activeForeground": "#FAFAFA"
"activityBar.background": "#322C2D",
"titleBar.activeBackground": "#463E3F",
"titleBar.activeForeground": "#FAFAFA"
}
}

14
.vscode/tasks.json vendored
View file

@ -31,6 +31,20 @@
},
"group": "build"
},
{
"label": "Clean build folder(s)",
"type": "shell",
"windows": {
"command": "cd ${workspaceFolder}\\build && rm game*; cd ${workspaceFolder} && rm aseprite_odin_generator*",
},
// "linux": {
// "command": "${workspaceFolder}/scripts/build_release.sh",
// },
// "osx": {
// "command": "${workspaceFolder}/scripts/build_release.sh",
// },
"group": "build"
},
{
"label": "Build Hot Reload",
"type": "shell",