Compare commits
No commits in common. "432dca80d05efce19d4c9dfc51fb9a13ae10d369" and "17190e20b81aa94dc270bf8c061f84d1bed21d3a" have entirely different histories.
432dca80d0
...
17190e20b8
7 changed files with 0 additions and 22 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -11,10 +11,6 @@ compile_commands.json
|
|||
# Generated MAVLink headers
|
||||
/include/mavlink
|
||||
|
||||
# Ignore addons files (copied from submodules), except uid created on import
|
||||
/project/addons/godot-xr-tools/**
|
||||
!/project/addons/godot-xr-tools/**/*.uid
|
||||
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/c++,godot,scons,python
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=c++,godot,scons,python
|
||||
|
||||
|
|
|
|||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -4,6 +4,3 @@
|
|||
[submodule "modules/mavlink"]
|
||||
path = modules/mavlink
|
||||
url = https://github.com/marsh-sim/mavlink.git
|
||||
[submodule "modules/godot-xr-tools"]
|
||||
path = modules/godot-xr-tools
|
||||
url = https://github.com/GodotVR/godot-xr-tools.git
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ Some files are generated, run the following commands on first setup and when dep
|
|||
godot --dump-extension-api # after updating Godot
|
||||
scons compile_commands # after modifying SConstruct
|
||||
python update_mavlink.py # after updating MAVLink dialect
|
||||
python update_addons.py # after changing any addon submodules
|
||||
```
|
||||
|
||||
### Windows setup
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit d36af3730e1a7671cfe379b5531b6e68abeb3504
|
||||
|
|
@ -1 +0,0 @@
|
|||
uid://46i64f2dmonl
|
||||
|
|
@ -1 +0,0 @@
|
|||
uid://c086s0jrgaiwi
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
from os import path
|
||||
from shutil import copytree
|
||||
|
||||
# add repository root path
|
||||
root_path = path.abspath(path.dirname(__file__))
|
||||
|
||||
copytree(
|
||||
path.join(root_path, 'modules', 'godot-xr-tools', 'addons'),
|
||||
path.join(root_path, 'project', 'addons'),
|
||||
dirs_exist_ok=True,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue