mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-01 18:21:17 +00:00
Did something to bullet
This commit is contained in:
parent
585b0d7705
commit
6cce37570c
3 changed files with 48 additions and 25 deletions
58
.vscode/launch.json
vendored
58
.vscode/launch.json
vendored
|
|
@ -1,23 +1,47 @@
|
||||||
{
|
{
|
||||||
// Use IntelliSense to learn about possible attributes.
|
"version": "2.0.0",
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Launch Project",
|
"name": "Play in Editor",
|
||||||
"type": "cppvsdbg",
|
"type": "godot-mono",
|
||||||
|
"mode": "playInEditor",
|
||||||
|
"request": "launch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Launch",
|
||||||
|
"type": "godot-mono",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/bin/godot.windows.editor.dev.x86_64.exe",
|
"mode": "executable",
|
||||||
// Change the arguments below for the project you want to test with.
|
"preLaunchTask": "build",
|
||||||
// To run the project instead of editing it, remove the "--editor" argument.
|
"executable": "F:/Apps/Godot_v4.2.1-stable_mono_win64/Godot_v4.2.1-stable_mono_win64.exe",
|
||||||
"args": [ "--editor", "--path", "path-to-your-godot-project-folder" ],
|
// See which arguments are available here:
|
||||||
"stopAtEntry": false,
|
// https://docs.godotengine.org/en/stable/getting_started/editor/command_line_tutorial.html
|
||||||
"cwd": "${workspaceFolder}",
|
"executableArguments": [
|
||||||
"environment": [],
|
"--path",
|
||||||
"console": "internalConsole",
|
"${workspaceRoot}"
|
||||||
"visualizerFile": "${workspaceFolder}/platform/windows/godot.natvis",
|
]
|
||||||
"preLaunchTask": "build"
|
},
|
||||||
}
|
{
|
||||||
|
"name": "Launch (Select Scene)",
|
||||||
|
"type": "godot-mono",
|
||||||
|
"request": "launch",
|
||||||
|
"mode": "executable",
|
||||||
|
"preLaunchTask": "build",
|
||||||
|
"executable": "F:/Apps/Godot_v4.2.1-stable_mono_win64/Godot_v4.2.1-stable_mono_win64.exe",
|
||||||
|
// See which arguments are available here:
|
||||||
|
// https://docs.godotengine.org/en/stable/getting_started/editor/command_line_tutorial.html
|
||||||
|
"executableArguments": [
|
||||||
|
"--path",
|
||||||
|
"${workspaceRoot}",
|
||||||
|
"${command:SelectLaunchScene}"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Attach",
|
||||||
|
"type": "godot-mono",
|
||||||
|
"request": "attach",
|
||||||
|
"address": "localhost",
|
||||||
|
"port": 23685
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
14
.vscode/tasks.json
vendored
14
.vscode/tasks.json
vendored
|
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
||||||
// for the documentation about the tasks.json format
|
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "build",
|
"label": "build",
|
||||||
"group": "build",
|
"command": "F:/Apps/Godot_v4.2.1-stable_mono_win64/Godot_v4.2.1-stable_mono_win64.exe",
|
||||||
"type": "shell",
|
"type": "process",
|
||||||
"command": "scons",
|
|
||||||
"args": [
|
"args": [
|
||||||
// enable for debugging with breakpoints
|
"--build-solutions",
|
||||||
"dev_build=yes",
|
"--path",
|
||||||
|
"${workspaceRoot}",
|
||||||
|
"--no-window",
|
||||||
|
"-q"
|
||||||
],
|
],
|
||||||
"problemMatcher": "$msCompile"
|
"problemMatcher": "$msCompile"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ radius = 2.23607
|
||||||
|
|
||||||
[node name="Bullet" type="Area2D"]
|
[node name="Bullet" type="Area2D"]
|
||||||
script = ExtResource("1_jvxw3")
|
script = ExtResource("1_jvxw3")
|
||||||
Speed = 500.0
|
|
||||||
metadata/_edit_group_ = true
|
metadata/_edit_group_ = true
|
||||||
|
|
||||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue