map select

This commit is contained in:
2025-04-11 01:25:01 +02:00
parent 19fe3e3d13
commit 95b2c825db
14 changed files with 416 additions and 19 deletions

32
.vscode/tasks.json vendored
View File

@@ -3,6 +3,26 @@
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "pdc",
"problemMatcher": ["$pdc-lua", "$pdc-external"],
"label": "Playdate: Build"
},
{
"type": "playdate-simulator",
"problemMatcher": ["$pdc-external"],
"label": "Playdate: Run"
},
{
"label": "Playdate: Build and Run",
"dependsOn": ["Playdate: Build", "Playdate: Run"],
"dependsOrder": "sequence",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Invoke Build and Run script",
"type": "shell",
@@ -29,6 +49,12 @@
"build"
]
},
"osx": {
"command": "${workspaceFolder}/build_and_run_mac.sh",
"args": [
"build"
]
},
"presentation": {
"showReuseMessage": false,
"reveal": "always",
@@ -62,6 +88,12 @@
"run"
]
},
"osx": {
"command": "${workspaceFolder}/build_and_run_mac.sh",
"args": [
"run"
]
},
"presentation": {
"showReuseMessage": false,
"reveal": "always",