| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename godot-headers to gdextension, move header to top folder | Rémi Verschelde | 2022-12-14 | 9 | -9/+9 |
* | Use int64_t for BitField as in Godot itself | Дмитрий Сальников | 2022-12-13 | 1 | -3/+3 |
* | Rename GDNative to GDExtension | Gilles Roudière | 2022-12-12 | 12 | -297/+297 |
* | Fix cast on PtrToArg::convert | Emmanuel Leblond | 2022-12-05 | 1 | -2/+2 |
* | Fix const qualifier for parameters in GDExtension api functions | Emmanuel Leblond | 2022-12-03 | 7 | -125/+125 |
* | Basic static analysis fixes | Andy Maloney | 2022-11-18 | 2 | -2/+2 |
* | StringName is working fine with demo \o/ | Emmanuel Leblond | 2022-11-08 | 2 | -3/+3 |
* | Correct __constant_get_bitfield_name with StringName | Emmanuel Leblond | 2022-11-08 | 1 | -1/+1 |
* | Remove now useless `_alloc_and_copy_cstr` | Emmanuel Leblond | 2022-11-08 | 2 | -14/+0 |
* | Use StringName in the whole GDExtension API instead of const char * | Emmanuel Leblond | 2022-11-08 | 6 | -172/+183 |
* | Add missing bindings for GDNativePtr<void>. | Fabio Alessandrelli | 2022-10-20 | 1 | -0/+1 |
* | Add support for virtual and abstract classes | Ricardo Buring | 2022-10-15 | 1 | -3/+22 |
* | Type `GDNativePropertyInfo.type` field as `GDNativeVariantType` | Emmanuel Leblond | 2022-10-13 | 1 | -1/+1 |
* | Run scripts to format and make headers consistent | Aaron Franke | 2022-10-09 | 13 | -34/+34 |
* | Merge pull request #885 from aaronfranke/core-data-structs | Rémi Verschelde | 2022-10-07 | 1 | -4/+4 |
|\ |
|
| * | Update core data structures to match the engine | Aaron Franke | 2022-10-07 | 1 | -4/+4 |
* | | Merge pull request #876 from Daylily-Zeleen/Daylily-Zeleen/master | Rémi Verschelde | 2022-10-07 | 1 | -2/+2 |
|\ \ |
|
| * | | Add detail infos for binding error message. | daylilyzeleen | 2022-09-30 | 1 | -2/+2 |
* | | | Bind enums in built-in types and expose bindings for global constants | Mikael Hermansson | 2022-10-06 | 1 | -0/+3 |
| |/
|/| |
|
* | | Merge pull request #880 from aaronfranke/struct | Rémi Verschelde | 2022-10-05 | 1 | -0/+4 |
|\ \ |
|
| * | | Use struct instead of class for core structures | Aaron Franke | 2022-10-05 | 1 | -0/+4 |
* | | | Merge pull request #855 from Zylann/fix_issue854_virtual_methods | Rémi Verschelde | 2022-10-05 | 1 | -3/+7 |
|\ \ \
| |/ /
|/| | |
|
| * | | Fix deriving a custom class with virtual methods | Marc Gilleron | 2022-09-21 | 1 | -3/+7 |
* | | | Merge pull request #859 from aaronfranke/basis-transform-quat | Rémi Verschelde | 2022-10-04 | 1 | -0/+21 |
|\ \ \
| |_|/
|/| | |
|
| * | | Update Basis/Transform3D/Quaternion to match the engine | Aaron Franke | 2022-09-20 | 1 | -0/+21 |
| |/ |
|
* / | Implement support for typed arrays. | bruvzg | 2022-09-23 | 1 | -0/+101 |
|/ |
|
* | Add integer posmod and rename range_lerp to remap | Aaron Franke | 2022-09-19 | 1 | -4/+12 |
* | Add pingpong and fract methods to Math | Aaron Franke | 2022-09-19 | 1 | -0/+16 |
* | Replace stepify with snapped | Aaron Franke | 2022-09-19 | 1 | -13/+18 |
* | Update cubic interpolation methods to match core | Aaron Franke | 2022-09-19 | 1 | -8/+117 |
* | Split is_equal_approx into float and double versions to match Godot | Aaron Franke | 2022-09-19 | 1 | -10/+36 |
* | Add `Object::cast_to` for `const Object*` | Marc Gilleron | 2022-09-18 | 1 | -0/+12 |
* | Change PropertyInfo members to String. | bruvzg | 2022-09-14 | 4 | -66/+97 |
* | Update hashfuncs, add some missing math funcs. | Fabio Alessandrelli | 2022-09-11 | 1 | -0/+16 |
* | Ensure GDCLASS can be used outside the godot namespace. | Fabio Alessandrelli | 2022-09-01 | 2 | -207/+207 |
* | Add support for `_notification`, `_set`, `_get`, `_get_property_list`, `_prop... | bruvzg | 2022-08-22 | 5 | -49/+101 |
* | Add support for `property_*_revert` methods | Yuri Sizov | 2022-08-18 | 1 | -0/+2 |
* | Merge pull request #677 from lukas-toenne/fix_object_ptr_args | Fabio Alessandrelli | 2022-07-29 | 1 | -2/+2 |
|\ |
|
| * | Fixed pointer indirection in the PtrToArg template for Object arguments. | Lukas Tönne | 2022-01-02 | 1 | -2/+2 |
* | | fix: Object::cast_to checks provided object for nullptr | DNKpp | 2022-07-26 | 1 | -0/+3 |
* | | Add bindings for Vector4, Vector4i, Projection built-in types. | bruvzg | 2022-07-21 | 4 | -0/+36 |
* | | Merge pull request #686 from ondy-personal/patch-1 | Rémi Verschelde | 2022-07-18 | 1 | -0/+3 |
|\ \ |
|
| * | | Fixed crash when called methods return nullptr. | ondy-personal | 2022-01-31 | 1 | -0/+3 |
* | | | Add support for BitField hint, sync API files. | bruvzg | 2022-07-11 | 3 | -1/+72 |
* | | | Fix crash when using static methods without return value | Alessandro Famà | 2022-07-03 | 1 | -1/+5 |
* | | | Fix GDN_EXPORT define with mingw. | Fabio Alessandrelli | 2022-06-18 | 1 | -3/+5 |
* | | | Sync containers with new HashMap/HashSet, sync API headers. | bruvzg | 2022-06-06 | 1 | -0/+8 |
* | | | Cast `Variant::Type` to `GDNativeVariantType` | Teodor Potancok | 2022-05-17 | 2 | -7/+7 |
* | | | [Method Bind] Add support for default argument values and static method bindi... | bruvzg | 2022-05-06 | 4 | -13/+284 |
* | | | Add support for variadic method binds with the typed return. Sync headers. | bruvzg | 2022-03-30 | 1 | -34/+80 |