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

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

@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "playdate",
"request": "launch",
"name": "Playdate: Debug",
"preLaunchTask": "${defaultBuildTask}"
}
]
}

View File

@@ -5,4 +5,8 @@
"Lua.runtime.nonstandardSymbol": ["+=", "-=", "*=", "/=", "//=", "%=", "<<=", ">>=", "&=", "|=", "^="],
"Lua.workspace.library": ["$PLAYDATE_SDK_PATH/CoreLibs"],
"Lua.workspace.preloadFileSize": 1000,
}
"playdate-debug.sdkPath": "/Users/oleksiiilienko/Developer/PlaydateSDK",
"playdate-debug.sourcePath": "/Users/oleksiiilienko/Documents/fpv2/source",
"playdate-debug.outputPath": "/Users/oleksiiilienko/Documents/fpv2/builds",
"playdate-debug.productName": "FPV Game"
}

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",