Skip to content

Commit

Permalink
Updateing godot-cpp to f58a2f25a2ac9f1af4964c047f30461f4ed4f40e
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiaanOlij committed Dec 10, 2021
1 parent f90dca5 commit b388ab9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion demo/project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
; [section] ; section goes between []
; param=value ; assign values to parameters

config_version=4
config_version=5

_global_script_classes=[{
"base": "Node3D",
Expand Down Expand Up @@ -47,6 +47,7 @@ _global_script_class_icons={
config/name="OpenVR demo"
run/main_scene="res://Main.tscn"
config/icon="res://icon.png"
config/features=PackedStringArray("4.0")

[display]

Expand Down
2 changes: 1 addition & 1 deletion godot-cpp
Submodule godot-cpp updated 40 files
+20 −0 .github/workflows/ci.yml
+1 −0 .gitignore
+5 −0 CMakeLists.txt
+8 −0 SConstruct
+49 −22 binding_generator.py
+1 −1 godot-headers
+2 −2 include/godot_cpp/classes/ref.hpp
+128 −151 include/godot_cpp/classes/wrapped.hpp
+15 −15 include/godot_cpp/core/binder_common.hpp
+2 −3 include/godot_cpp/core/class_db.hpp
+5 −5 include/godot_cpp/core/engine_ptrcall.hpp
+1 −1 include/godot_cpp/core/math.hpp
+11 −10 include/godot_cpp/core/memory.hpp
+9 −9 include/godot_cpp/core/method_bind.hpp
+2 −2 include/godot_cpp/core/method_ptrcall.hpp
+2 −2 include/godot_cpp/core/object.hpp
+3 −6 include/godot_cpp/godot.hpp
+7 −7 include/godot_cpp/variant/aabb.hpp
+50 −0 include/godot_cpp/variant/array_helpers.hpp
+15 −15 include/godot_cpp/variant/color.hpp
+10 −10 include/godot_cpp/variant/quaternion.hpp
+2 −2 include/godot_cpp/variant/rect2.hpp
+4 −4 include/godot_cpp/variant/vector2.hpp
+8 −4 include/godot_cpp/variant/vector2i.hpp
+5 −5 include/godot_cpp/variant/vector3.hpp
+56 −0 src/classes/wrapped.cpp
+7 −7 src/core/class_db.cpp
+2 −2 src/core/error_macros.cpp
+3 −3 src/core/memory.cpp
+1 −1 src/core/method_bind.cpp
+3 −14 src/godot.cpp
+16 −16 src/variant/char_string.cpp
+40 −18 src/variant/packed_arrays.cpp
+43 −38 src/variant/variant.cpp
+21 −0 test/.gitignore
+17 −5 test/SConstruct
+3 −0 test/demo/main.gd
+0 −6 test/demo/main.tscn
+31 −1 test/src/example.cpp
+12 −0 test/src/example.h

0 comments on commit b388ab9

Please sign in to comment.