Skip to content

Commit

Permalink
inheritance implemented for character and controller, cmake overhaul,…
Browse files Browse the repository at this point in the history
… project restructure
  • Loading branch information
vorlac committed Oct 6, 2023
1 parent 41913fb commit 1792b0f
Show file tree
Hide file tree
Showing 65 changed files with 1,235 additions and 607 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.godot/
.import/
.out/
out/
cmake-build-*/

export.cfg
Expand Down
6 changes: 4 additions & 2 deletions .vs/launch.vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"${workspaceRoot}/project"
],
"project": "CMakeLists.txt",
"name": "gdextension (editor)"
"name": "gdextension (editor)",
"visualizerFile": "${workspaceRoot}/extern/godot-engine/platform/windows/godot.natvis"
},
{
"type": "dll",
Expand All @@ -28,7 +29,8 @@
"${workspaceRoot}/project"
],
"project": "CMakeLists.txt",
"name": "gdextension (console)"
"name": "gdextension (project)",
"visualizerFile": "${workspaceRoot}/extern/godot-engine/platform/windows/godot.natvis"
}
]
}
24 changes: 9 additions & 15 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"type": "cppdbg",
"request": "launch",
"MIMode": "gdb",
"program": "unsupported platform, add executable path to launch.json",
"linux": {
"program": "${workspaceFolder}/extern/godot-engine/bin/godot.linuxbsd.editor.dev.x86_64",
"miDebuggerPath": "/usr/bin/gdb"
Expand All @@ -23,14 +22,11 @@
"--verbose",
"--path",
"${workspaceFolder}/project",
"res://main.tscn"
],
"cwd": "${workspaceFolder}/project",
"cwd": "${workspaceFolder}",
"visualizerFile": "${workspaceFolder}/extern/godot-engine/platform/windows/godot.natvis",
"internalConsoleOptions": "openOnSessionStart",
"launchCompleteCommand": "exec-run",
"targetArchitecture": "x64",
"externalConsole": false,
"symbolLoadInfo": {
"loadAll": true,
"exceptionList": "",
Expand All @@ -48,24 +44,25 @@
"type": "cppdbg",
"request": "launch",
"MIMode": "gdb",
"program": "unsupported platform, add executable path to launch.json",
"linux": {
"program": "${workspaceFolder}/extern/godot-engine/bin/godot.linuxbsd.editor.dev.x86_64",
"miDebuggerPath": "/usr/bin/gdb"
},
"windows": {
"program": "${workspaceFolder}/extern/godot-engine/bin/godot.windows.editor.dev.x86_64.exe",
"miDebuggerPath": "C:\\tools\\mingw64\\bin\\gdb.exe"
},
"args": [
"--editor",
"--debug",
"--verbose",
"--path",
"${workspaceFolder}/project"
],
"cwd": "${workspaceFolder}/project",
"cwd": "${workspaceFolder}",
"visualizerFile": "${workspaceFolder}/extern/godot-engine/platform/windows/godot.natvis",
"internalConsoleOptions": "openOnSessionStart",
"launchCompleteCommand": "exec-run",
"targetArchitecture": "x64",
"externalConsole": false,
"symbolLoadInfo": {
"loadAll": true,
"exceptionList": ""
Expand Down Expand Up @@ -95,14 +92,12 @@
"--debug",
"--verbose",
"--path",
"${workspaceFolder}/project",
"res://main.tscn"
"${workspaceFolder}/project"
],
"cwd": "${workspaceFolder}/project",
"cwd": "${workspaceFolder}",
"visualizerFile": "${workspaceFolder}/extern/godot-engine/platform/windows/godot.natvis",
"internalConsoleOptions": "openOnSessionStart",
"console": "internalConsole",
"externalConsole": false,
},
{
"name": "editor (vsdbg)",
Expand All @@ -124,11 +119,10 @@
"--path",
"${workspaceFolder}/project"
],
"cwd": "${workspaceFolder}/project",
"cwd": "${workspaceFolder}",
"visualizerFile": "${workspaceFolder}/extern/godot-engine/platform/windows/godot.natvis",
"internalConsoleOptions": "openOnSessionStart",
"console": "internalConsole",
"externalConsole": false,
}
]
}
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,5 @@
"workbench.list.smoothScrolling": true,
"workbench.tree.renderIndentGuides": "always",
"dotnet.defaultSolution": "disable",
"svg.preview.background": "editor",
}
Loading

0 comments on commit 1792b0f

Please sign in to comment.