adding mask options

This commit is contained in:
2025-07-19 21:52:49 +10:00
parent 5c51691ba7
commit c74dccf1cf
15 changed files with 397 additions and 33 deletions

33
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,33 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch PNGTuber Plus (Godot)",
"type": "godot",
"request": "launch",
"port": 6007,
"address": "127.0.0.1"
},
{
"name": "Attach to Running Godot",
"type": "godot",
"request": "attach",
"port": 6007,
"address": "127.0.0.1"
},
{
"name": "Launch Built Executable",
"type": "PowerShell",
"request": "launch",
"script": "if (Test-Path '${workspaceFolder}\\build\\windows\\PNGTuber-Plus.exe') { Start-Process '${workspaceFolder}\\build\\windows\\PNGTuber-Plus.exe' } else { Write-Host 'Executable not found. Build the project first.' }",
"cwd": "${workspaceFolder}"
},
{
"name": "Build and Launch",
"type": "PowerShell",
"request": "launch",
"script": ".\\build-windows.bat; if (Test-Path '.\\build\\windows\\PNGTuber-Plus.exe') { Start-Process '.\\build\\windows\\PNGTuber-Plus.exe' }",
"cwd": "${workspaceFolder}"
}
]
}