-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from Faless/bump/beta14
Update to Godot 4.0 beta14.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule godot-cpp
updated
21 files
+11 −1 | CMakeLists.txt | |
+9 −0 | README.md | |
+107 −5 | binding_generator.py | |
+312 −48 | gdextension/extension_api.json | |
+20 −0 | gdextension/gdextension_interface.h | |
+3 −0 | include/godot_cpp/classes/wrapped.hpp | |
+162 −48 | include/godot_cpp/core/math.hpp | |
+8 −6 | include/godot_cpp/core/method_bind.hpp | |
+2 −2 | include/godot_cpp/templates/cowdata.hpp | |
+1 −9 | include/godot_cpp/variant/basis.hpp | |
+0 −1,415 | include/godot_cpp/variant/ucaps.hpp | |
+16 −0 | include/godot_cpp/variant/variant.hpp | |
+58 −0 | src/classes/low_level.cpp | |
+4 −4 | src/core/class_db.cpp | |
+1 −1 | src/variant/basis.cpp | |
+41 −8 | src/variant/char_string.cpp | |
+2 −2 | src/variant/quaternion.cpp | |
+21 −4 | src/variant/variant.cpp | |
+9 −0 | test/demo/main.gd | |
+24 −0 | test/src/example.cpp | |
+2 −0 | test/src/example.h |