map select
This commit is contained in:
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "playdate",
|
||||
"request": "launch",
|
||||
"name": "Playdate: Debug",
|
||||
"preLaunchTask": "${defaultBuildTask}"
|
||||
}
|
||||
]
|
||||
}
|
||||
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@@ -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
32
.vscode/tasks.json
vendored
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user