Added vscode data

This commit is contained in:
2024-05-15 14:41:31 +03:00
parent 3d54b42863
commit 20cc941316
3 changed files with 53 additions and 0 deletions

27
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make",
"args": [
"godot-editor-main"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn":[
]
},
{
"label": "run-gym",
"type": "shell",
"command": "../src/godot/bin/godot.x11.opt.tools.64",
"args": ["locations/gym.tscn"]
}
]
}