Skip to content

Commit

Permalink
Update to Godot 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtonmeuser committed Jan 24, 2024
1 parent ac9bb24 commit 23cff07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
TARGET: template_release
GODOT_REF: 4.1.3-stable
GODOT_REF: 4.2.1-stable
LIBRARY_PATH: addons/godot-wasm/bin

jobs:
Expand Down
2 changes: 1 addition & 1 deletion godot-cpp
Submodule godot-cpp updated 39 files
+14 −13 .github/workflows/ci.yml
+3 −15 CMakeLists.txt
+2 −1 README.md
+116 −19 binding_generator.py
+11,636 −2,471 gdextension/extension_api.json
+336 −16 gdextension/gdextension_interface.h
+77 −33 include/godot_cpp/classes/wrapped.hpp
+90 −0 include/godot_cpp/core/binder_common.hpp
+23 −15 include/godot_cpp/core/class_db.hpp
+12 −11 include/godot_cpp/core/memory.hpp
+3 −22 include/godot_cpp/core/object.hpp
+62 −0 include/godot_cpp/core/object_id.hpp
+12 −0 include/godot_cpp/core/property_info.hpp
+34 −9 include/godot_cpp/godot.hpp
+64 −0 include/godot_cpp/variant/callable_custom.hpp
+248 −0 include/godot_cpp/variant/callable_method_pointer.hpp
+15 −1 include/godot_cpp/variant/variant.hpp
+50 −0 src/classes/wrapped.cpp
+14 −10 src/core/class_db.cpp
+6 −5 src/core/memory.cpp
+88 −24 src/godot.cpp
+113 −0 src/variant/callable_custom.cpp
+114 −0 src/variant/callable_method_pointer.cpp
+7 −2 src/variant/char_string.cpp
+16 −0 src/variant/variant.cpp
+1 −23 test/CMakeLists.txt
+11 −0 test/SConstruct
+7 −0 test/generate_xcframework.sh
+0 −0 test/project/bin/libgdexample.macos.template_debug.framework/Resources/Info.plist
+0 −0 test/project/bin/libgdexample.macos.template_release.framework/Resources/Info.plist
+16 −0 test/project/example.gdextension
+72 −0 test/project/main.gd
+2 −1 test/project/project.godot
+186 −0 test/src/example.cpp
+26 −0 test/src/example.h
+3 −5 tools/android.py
+31 −3 tools/godotcpp.py
+1 −1 tools/ios.py
+3 −0 tools/linux.py

0 comments on commit 23cff07

Please sign in to comment.