diff --git a/.gitignore b/.gitignore index f94c164..7747b74 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ *.blend1 khafile.js -build_PuzzlePocalypse \ No newline at end of file +build_PuzzlePocalypse +build +.vscode\* diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..399e465 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,32 @@ +{ + "configurations": [ + { + "name": "Kha: HTML5", + "request": "launch", + "type": "chrome", + "cwd": "${workspaceFolder}/build/debug-html5", + "runtimeExecutable": "${command:kha.findKhaElectron}", + "runtimeArgs": [ + "--no-sandbox", + "--force-device-scale-factor=1", + "." + ], + "outFiles": [ + "${workspaceFolder}/build/debug-html5/*.js" + ], + "preLaunchTask": "Kha: Build for Debug HTML5", + "internalConsoleOptions": "openOnSessionStart", + "skipFiles": [ + "/**" + ] + }, + { + "type": "krom", + "request": "launch", + "name": "Kha: Krom", + "preLaunchTask": "Kha: Build for Krom", + "internalConsoleOptions": "openOnSessionStart" + } + ], + "compounds": [] +} \ No newline at end of file