Skip to content

Commit

Permalink
build: update to godot 4.4-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
LandscapeLab Office committed Feb 26, 2025
1 parent 80e1f61 commit a484332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion godot-cpp
Submodule godot-cpp updated 78 files
+14 −11 .github/actions/godot-cache-restore/action.yml
+6 −5 .github/actions/godot-cache-save/action.yml
+62 −0 .github/actions/setup-godot-cpp/action.yml
+28 −78 .github/workflows/ci.yml
+21 −0 .github/workflows/runner.yml
+7 −2 .github/workflows/static_checks.yml
+7 −0 .gitignore
+50 −216 CMakeLists.txt
+1 −2 README.md
+245 −206 binding_generator.py
+183 −0 build_profile.py
+169 −0 cmake/GodotCPPModule.cmake
+0 −94 cmake/GodotCompilerWarnings.cmake
+40 −0 cmake/android.cmake
+177 −0 cmake/common_compiler_flags.cmake
+40 −0 cmake/emsdkHack.cmake
+370 −0 cmake/godotcpp.cmake
+21 −0 cmake/ios.cmake
+21 −0 cmake/linux.cmake
+46 −0 cmake/macos.cmake
+42 −0 cmake/web.cmake
+103 −0 cmake/windows.cmake
+377 −0 doc/cmake.rst
+55 −0 doc_source_generator.py
+106,770 −87,350 gdextension/extension_api.json
+133 −12 gdextension/gdextension_interface.h
+6 −2 include/godot_cpp/classes/ref.hpp
+22 −18 include/godot_cpp/classes/wrapped.hpp
+24 −12 include/godot_cpp/core/class_db.hpp
+8 −4 include/godot_cpp/core/defs.hpp
+73 −0 include/godot_cpp/core/print_string.hpp
+12 −11 include/godot_cpp/core/type_info.hpp
+5 −2 include/godot_cpp/godot.hpp
+1 −1 include/godot_cpp/templates/safe_refcount.hpp
+1 −1 include/godot_cpp/variant/aabb.hpp
+2 −2 include/godot_cpp/variant/basis.hpp
+1 −1 include/godot_cpp/variant/color.hpp
+1 −1 include/godot_cpp/variant/plane.hpp
+1 −1 include/godot_cpp/variant/projection.hpp
+43 −45 include/godot_cpp/variant/quaternion.hpp
+1 −1 include/godot_cpp/variant/rect2.hpp
+1 −1 include/godot_cpp/variant/rect2i.hpp
+1 −1 include/godot_cpp/variant/transform2d.hpp
+1 −1 include/godot_cpp/variant/transform3d.hpp
+439 −0 include/godot_cpp/variant/typed_dictionary.hpp
+3 −2 include/godot_cpp/variant/variant.hpp
+509 −0 include/godot_cpp/variant/variant_internal.hpp
+1 −1 include/godot_cpp/variant/vector2.hpp
+1 −1 include/godot_cpp/variant/vector2i.hpp
+1 −1 include/godot_cpp/variant/vector3.hpp
+1 −1 include/godot_cpp/variant/vector3i.hpp
+5 −4 include/godot_cpp/variant/vector4.hpp
+1 −1 include/godot_cpp/variant/vector4i.hpp
+31 −17 misc/scripts/check_get_file_list.py
+25 −23 src/classes/wrapped.cpp
+15 −7 src/core/class_db.cpp
+39 −0 src/core/print_string.cpp
+10 −4 src/godot.cpp
+5 −2 src/variant/basis.cpp
+6 −0 src/variant/packed_arrays.cpp
+28 −40 src/variant/quaternion.cpp
+7 −6 src/variant/variant.cpp
+43 −0 src/variant/variant_internal.cpp
+81 −143 test/CMakeLists.txt
+1 −0 test/SConstruct
+5 −1 test/build_profile.json
+24 −2 test/project/main.gd
+65 −0 test/src/example.cpp
+20 −0 test/src/example.h
+1 −0 test/src/register_types.cpp
+5 −0 tools/android.py
+31 −1 tools/common_compiler_flags.py
+44 −47 tools/godotcpp.py
+5 −0 tools/ios.py
+4 −0 tools/linux.py
+5 −0 tools/macos.py
+9 −1 tools/web.py
+64 −12 tools/windows.py

0 comments on commit a484332

Please sign in to comment.