Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update for new NOTIFICATION_POSTINITIALIZE handling | David Snopek | 2024-10-29 | 1 | -5/+8 |
| | |||||
* | Avoid `thread_local` on MacOS to prevent issues with hot reload | David Snopek | 2024-10-17 | 1 | -0/+3 |
| | |||||
* | Merge pull request #1590 from dsnopek/reload-instance-bindings | David Snopek | 2024-10-17 | 1 | -2/+1 |
|\ | | | | | Correctly set instance bindings on reload | ||||
| * | Correctly set instance bindings on reload | David Snopek | 2024-09-17 | 1 | -2/+1 |
| | | |||||
* | | Implement typed dictionaries | Thaddeus Crews | 2024-09-17 | 1 | -0/+201 |
|/ | |||||
* | Fix missing MAKE_TYPED_ARRAY_INFO for Packed*Arrays | Aaron Franke | 2024-08-22 | 1 | -9/+10 |
| | |||||
* | Fix missing type info for PackedVector4Array | Aaron Franke | 2024-08-10 | 2 | -0/+2 |
| | |||||
* | Fix argument metadata when binding methods | Yuri Sizov | 2024-06-27 | 1 | -1/+1 |
| | | | | | | | While there doesn't seem to be any runtime issues, this triggers the address sanitizer in a few ways, depending on what kind of method you're binding. | ||||
* | Merge pull request #1446 from ↵ | David Snopek | 2024-06-14 | 1 | -3/+6 |
|\ | | | | | | | | | Daylily-Zeleen/daylily-zeleen/set_instance_and_instance_biding_in_Wrapped_constructor Set instance and instance binding in `Wrapped` constructor. | ||||
| * | Set instance and instance binding in Wrapped constructor. | Daylily-Zeleen | 2024-05-28 | 1 | -3/+6 |
| | | |||||
* | | Fix undefined symbol error on Linux with virtual methods that take `Node *` ↵ | David Snopek | 2024-06-10 | 1 | -10/+10 |
| | | | | | | | | arguments | ||||
* | | Explicitly refer to `godot` namespace in `GDREGISTER_*_CLASS()` macros | David Snopek | 2024-06-01 | 1 | -5/+5 |
|/ | |||||
* | Clean up instance bindings for engine singletons to prevent crash | David Snopek | 2024-05-10 | 1 | -0/+18 |
| | |||||
* | Merge pull request #1450 from dsnopek/free-property-list-count | David Snopek | 2024-05-08 | 1 | -1/+1 |
|\ | | | | | Update `free_property_list` callback to take count | ||||
| * | Update `free_property_list` callback to take count | David Snopek | 2024-04-30 | 1 | -1/+1 |
| | | |||||
* | | Allow submitting documentation to the Godot editor | David Snopek | 2024-05-07 | 1 | -0/+2 |
| | | |||||
* | | Merge pull request #1445 from dsnopek/classdb-enum-issue | David Snopek | 2024-04-30 | 1 | -0/+2 |
|\ \ | | | | | | | Allow forwarding from `ClassDB` to `ClassDBSingleton` to support enumerations | ||||
| * | | Allow forwarding from `ClassDB` to `ClassDBSingleton` to support enumerations | David Snopek | 2024-04-23 | 1 | -0/+2 |
| | | | |||||
* | | | Merge pull request #1405 from dsnopek/fix-null-object-arguments | David Snopek | 2024-04-29 | 1 | -4/+4 |
|\ \ \ | | | | | | | | | Correctly handle `Object *` arguments that were encoded as `nullptr` | ||||
| * | | | Correctly handle `Object *` arguments that were encoded as `nullptr` | David Snopek | 2024-04-08 | 1 | -4/+4 |
| | | | | |||||
* | | | | Give compile-time error if registering a class without its own ↵ | David Snopek | 2024-04-24 | 2 | -0/+11 |
| |_|/ |/| | | | | | | | | `_bind_methods()` function | ||||
* | | | Merge pull request #1431 from pupil1337/fix-create-instance-func | David Snopek | 2024-04-24 | 1 | -0/+1 |
|\ \ \ | | | | | | | | | Fix create instance func | ||||
| * | | | Add static_assert() for register_class | pupil1337 | 2024-04-11 | 1 | -0/+1 |
| | | | | |||||
* | | | | Merge pull request #1443 from Naros/property-method-dict-helpers | David Snopek | 2024-04-24 | 1 | -0/+34 |
|\ \ \ \ | | | | | | | | | | | Implement to/from dict helpers for PropertyInfo/MethodInfo | ||||
| * | | | | Implement to/from dict helpers for PropertyInfo/MethodInfo | Chris Cranford | 2024-04-20 | 1 | -0/+34 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #1436 from AThousandShips/math_update | David Snopek | 2024-04-24 | 1 | -0/+8 |
|\ \ \ \ | |/ / / |/| | | | [Math] Add `is_finite` methods | ||||
| * | | | [Math] Add `is_finite` methods | A Thousand Ships | 2024-04-11 | 1 | -0/+8 |
| |/ / | |||||
* / / | Fix PropertyInfo to use hint/usage default constants | Chris Cranford | 2024-04-16 | 1 | -2/+2 |
|/ / | |||||
* | | Fix incorrect utility call signature | A Thousand Ships | 2024-04-02 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #1409 from Repiteo/class-to-typename | David Snopek | 2024-04-02 | 11 | -117/+117 |
|\ \ | | | | | | | Enforce template syntax `typename` over `class` | ||||
| * | | Enforce template syntax `typename` over `class` | Thaddeus Crews | 2024-03-10 | 11 | -117/+117 |
| |/ | |||||
* | | Merge pull request #1407 from AThousandShips/flag_fix | David Snopek | 2024-03-11 | 1 | -1/+1 |
|\ \ | | | | | | | Fix invalid `void` return in `BitField` | ||||
| * | | Fix invalid `void` return in `BitField` | A Thousand Ships | 2024-03-08 | 1 | -1/+1 |
| |/ | |||||
* / | Fix explicit namespaces in macros | Marc Gilleron | 2024-03-08 | 2 | -9/+9 |
|/ | |||||
* | Merge pull request #1383 from bruvzg/memalign | David Snopek | 2024-02-26 | 1 | -12/+34 |
|\ | | | | | [Core] Improve `CowData` and `Memory` metadata alignment. | ||||
| * | [Core] Improve `CowData` and `Memory` metadata alignment. | bruvzg | 2024-02-05 | 1 | -12/+34 |
| | | |||||
* | | Allow registering "runtime classes" | David Snopek | 2024-02-13 | 1 | -4/+13 |
| | | |||||
* | | Merge pull request #1377 from dsnopek/gdextension-register-virtual-method | David Snopek | 2024-02-12 | 3 | -0/+16 |
|\ \ | | | | | | | Allow GDExtensions to register virtual methods and call them on scripts (godot-cpp support) | ||||
| * | | Allow GDExtensions to register virtual methods and call them on scripts | David Snopek | 2024-02-12 | 3 | -0/+16 |
| |/ | |||||
* | | Merge pull request #1363 from ↵ | David Snopek | 2024-02-12 | 1 | -0/+12 |
|\ \ | | | | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/fix_object_return_value_of_builtin_types_methods Fix object return value of builtin types' methods. | ||||
| * | | Fix object return value of builtin types' methods. | DaylilyZeleen | 2024-02-13 | 1 | -0/+12 |
| | | | |||||
* | | | Added newer Variant types to `typed_array.hpp` | Allen Pestaluky | 2024-02-06 | 1 | -0/+6 |
| |/ |/| | | | | | | | This is a companion commit to the godot PR https://github.com/godotengine/godot/pull/87992 which fixes https://github.com/godotengine/godot/issues/87991 Also undefines typed array templates after use to match Godot's typed_array.h | ||||
* | | Rework GDCLASS macro to allow pure virtual functions | Chris Cranford | 2024-01-18 | 1 | -2/+29 |
|/ | |||||
* | Fix expected argument count for call errors | A Thousand Ships | 2023-12-30 | 1 | -22/+22 |
| | |||||
* | Merge pull request #1280 from dsnopek/callable-custom | David Snopek | 2023-11-17 | 2 | -22/+64 |
|\ | | | | | Add `CallableCustom` that devs can use in their GDExtensions | ||||
| * | Add `CallableCustom` that devs can use in their GDExtensions | David Snopek | 2023-11-06 | 2 | -22/+64 |
| | | |||||
* | | [iOS] Fix building as static library or xcframework, add iOS config and ↵ | bruvzg | 2023-11-09 | 1 | -11/+12 |
|/ | | | | xcframework build script to the test project. | ||||
* | Add protections against registering classes that didn't use GDCLASS() | David Snopek | 2023-10-22 | 1 | -0/+1 |
| | |||||
* | Automatically register only engine classes whose header has been included | David Snopek | 2023-10-16 | 1 | -7/+4 |
| | |||||
* | Changes necessary for hot reload to work | David Snopek | 2023-09-25 | 1 | -0/+1 |
| |