File tree
6 files changed
+83
-8
lines changed- samples/cpp_sample
- src
6 files changed
+83
-8
lines changedLines changed: 16 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
38 |
| - | |
| 38 | + | |
39 | 39 |
| |
40 | 40 |
| |
| 41 | + | |
| 42 | + | |
| 43 | + | |
41 | 44 |
| |
42 | 45 |
| |
43 | 46 |
| |
| |||
48 | 51 |
| |
49 | 52 |
| |
50 | 53 |
| |
| 54 | + | |
51 | 55 |
| |
52 | 56 |
| |
53 | 57 |
| |
| |||
56 | 60 |
| |
57 | 61 |
| |
58 | 62 |
| |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
59 | 73 |
| |
60 | 74 |
| |
61 | 75 |
| |
| |||
96 | 110 |
| |
97 | 111 |
| |
98 | 112 |
| |
99 |
| - | |
| 113 | + | |
100 | 114 |
| |
101 | 115 |
| |
102 | 116 |
| |
|
Lines changed: 18 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + |
Submodule godot updated from 2f82b24 to 255be24
- .editorconfig+16
- .gitattributes+2-6
- .github/workflows/ci.yml+22-7
- .github/workflows/static_checks.yml+21-42
- .gitignore+1-1
- .pre-commit-config.yaml+64
- CMakeLists.txt+1-1
- SConstruct+2-7
- binding_generator.py+195-63
- gdextension/extension_api.json+911-18
- gdextension/gdextension_interface.h+61
- gdextension/libgodot.h+2-2
- include/godot_cpp/classes/ref.hpp+4-4
- include/godot_cpp/classes/wrapped.hpp+29-13
- include/godot_cpp/core/memory.hpp+6-3
- include/godot_cpp/core/method_bind.hpp+1-1
- include/godot_cpp/core/type_info.hpp+10-10
- include/godot_cpp/godot.hpp+4
- include/godot_cpp/templates/local_vector.hpp+4-4
- include/godot_cpp/variant/array_helpers.hpp+5
- include/godot_cpp/variant/color_names.inc.hpp+5
- include/godot_cpp/variant/rect2.hpp+1-1
- include/godot_cpp/variant/rect2i.hpp+1-1
- include/godot_cpp/variant/typed_array.hpp+16-6
- include/godot_cpp/variant/variant.hpp+3
- misc/hooks/README.md-37
- misc/hooks/canonicalize_filename.sh-48
- misc/hooks/pre-commit-50
- misc/hooks/pre-commit-black-202
- misc/hooks/pre-commit-clang-format-242
- misc/hooks/winmessage.ps1-103
- misc/scripts/black_format.sh-25
- misc/scripts/check_ci_log.py+4-2
- misc/scripts/check_get_file_list.py+3-3
- misc/scripts/clang_format.sh-38
- misc/scripts/codespell.sh-5
- misc/scripts/copyright_headers.py+50-49
- misc/scripts/file_format.py+46
- misc/scripts/file_format.sh-41
- misc/scripts/header_guards.py+127
- misc/scripts/header_guards.sh-60
- misc/scripts/mypy.ini-11
- misc/scripts/mypy_check.sh-6
- pyproject.toml+58
- src/classes/low_level.cpp+9
- src/classes/wrapped.cpp+18-7
- src/core/class_db.cpp+2-2
- src/core/memory.cpp+3-3
- src/core/object.cpp+1-1
- src/godot.cpp+8
- src/variant/basis.cpp+1-1
- src/variant/char_string.cpp+4-4
- src/variant/color.cpp+1-1
- src/variant/variant.cpp+8
- test/SConstruct-2
- test/build_profile.json+9
- test/project/main.gd+6-3
- test/src/example.cpp+22-5
- test/src/example.h+7-1
- test/src/tests.h+19-18
- tools/android.py+2-2
- tools/common_compiler_flags.py-1
- tools/godotcpp.py+16-6
- tools/ios.py+3-2
- tools/linux.py+1-1
- tools/macos.py+1
- tools/my_spawn.py-1
- tools/web.py+8-5
- tools/windows.py+73-4
Lines changed: 5 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
25 |
| - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
26 | 30 |
| |
27 | 31 |
| |
28 | 32 |
| |
|
Lines changed: 42 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
| 3 | + | |
3 | 4 |
| |
| 5 | + | |
| 6 | + | |
| 7 | + | |
4 | 8 |
| |
5 | 9 |
| |
6 | 10 |
| |
| |||
13 | 17 |
| |
14 | 18 |
| |
15 | 19 |
| |
16 |
| - | |
| 20 | + | |
17 | 21 |
| |
| 22 | + | |
| 23 | + | |
18 | 24 |
| |
19 | 25 |
| |
20 | 26 |
| |
| |||
47 | 53 |
| |
48 | 54 |
| |
49 | 55 |
| |
| 56 | + | |
50 | 57 |
| |
51 | 58 |
| |
52 | 59 |
| |
| |||
66 | 73 |
| |
67 | 74 |
| |
68 | 75 |
| |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
69 | 90 |
| |
70 | 91 |
| |
71 | 92 |
| |
72 | 93 |
| |
| 94 | + | |
73 | 95 |
| |
| 96 | + | |
| 97 | + | |
| 98 | + | |
74 | 99 |
| |
75 | 100 |
| |
76 | 101 |
| |
77 | 102 |
| |
| 103 | + | |
78 | 104 |
| |
| 105 | + | |
| 106 | + | |
| 107 | + | |
79 | 108 |
| |
80 | 109 |
| |
81 | 110 |
| |
82 | 111 |
| |
83 | 112 |
| |
84 | 113 |
| |
85 |
| - | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
86 | 119 |
| |
87 | 120 |
| |
88 | 121 |
| |
| |||
95 | 128 |
| |
96 | 129 |
| |
97 | 130 |
| |
| 131 | + | |
98 | 132 |
| |
99 |
| - | |
| 133 | + | |
100 | 134 |
| |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
101 | 140 |
| |
102 | 141 |
| |
103 | 142 |
| |
|
0 commit comments