Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rebrand preambles to Redot | Spartan322 | 2024-10-31 | 25 | -50/+100 |
| | |||||
* | Merge pull request #1609 from Ivorforce/patch-3 | David Snopek | 2024-10-30 | 1 | -3/+4 |
|\ | | | | | Rename Vector4.components -> coords. | ||||
| * | Rename Vector4.components -> coords. | Lukas Tenbrink | 2024-10-30 | 1 | -3/+4 |
| | | | | | | The use of .components is deprecated. | ||||
* | | Merge pull request #1626 from ruffenman/remove-unimplemented-variant-functions | David Snopek | 2024-10-30 | 1 | -2/+0 |
|\ \ | | | | | | | Remove unimplemented static variant functions 'blend' and 'interpolate'… | ||||
| * | | Remove unimplemented static variant functions 'blend' and 'interpolate'. If ↵ | ruffenman | 2024-10-14 | 1 | -2/+0 |
| |/ | | | | | | | a user attempts to call either of these it will introduce a linker error and it may not be immediately clear to them why. Also, variant interpolation can already be accessed via 'UtilityFunctions::lerp', making at least the interpolate function unecessary here. | ||||
* | | Merge pull request #1591 from dsnopek/variant-object-instance-id | David Snopek | 2024-10-29 | 1 | -0/+2 |
|\ \ | | | | | | | Directly get object instance ID from `Variant` and implement `Variant::get_validated_object()` | ||||
| * | | Directly get object instance ID from `Variant` and implement ↵ | David Snopek | 2024-10-17 | 1 | -0/+2 |
| | | | | | | | | | | | | `Variant::get_validated_object()` | ||||
* | | | Sync `Quaternion` with the version in Godot | David Snopek | 2024-10-28 | 1 | -44/+42 |
| | | | |||||
* | | | Add p_use_model_front to Basis::looking_at() | Florent Guiocheau | 2024-10-14 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Implement typed dictionaries | Thaddeus Crews | 2024-09-17 | 1 | -0/+238 |
|/ | |||||
* | Fix missing type info for PackedVector4Array | Aaron Franke | 2024-08-10 | 1 | -0/+1 |
| | |||||
* | Merge pull request #1483 from AThousandShips/arr_typed_fix | David Snopek | 2024-06-28 | 1 | -6/+16 |
|\ | | | | | Fix sharing of typed arrays from constructor | ||||
| * | Fix sharing of typed arrays from constructor | A Thousand Ships | 2024-06-06 | 1 | -6/+16 |
| | | |||||
* | | Merge pull request #1504 from Repiteo/pre-commit-hooks | David Snopek | 2024-06-25 | 4 | -2/+12 |
|\ \ | | | | | | | Replace legacy hooks with `pre-commit` Python tool | ||||
| * | | Integrate `.pre-commit-config.yaml` | Thaddeus Crews | 2024-06-24 | 4 | -2/+12 |
| |/ | |||||
* / | Add missing enum & ctor for PackedVector4Array implementation | Chris Cranford | 2024-06-19 | 1 | -0/+3 |
|/ | |||||
* | Merge pull request #1437 from AThousandShips/vec_elem_scalar | David Snopek | 2024-05-07 | 9 | -19/+76 |
|\ | | | | | Add scalar versions of `Vector*` `min/max/clamp/snap(ped)` | ||||
| * | Add scalar versions of `Vector*` `min/max/clamp/snap(ped)` | A Thousand Ships | 2024-04-11 | 9 | -19/+76 |
| | | | | | | | | Also added `snapped` to the integer vectors for completeness | ||||
* | | [Math] Add `is_finite` methods | A Thousand Ships | 2024-04-11 | 10 | -0/+10 |
|/ | |||||
* | Merge pull request #1409 from Repiteo/class-to-typename | David Snopek | 2024-04-02 | 4 | -17/+17 |
|\ | | | | | Enforce template syntax `typename` over `class` | ||||
| * | Enforce template syntax `typename` over `class` | Thaddeus Crews | 2024-03-10 | 4 | -17/+17 |
| | | |||||
* | | Merge pull request #1379 from dsnopek/uninitialized-value-mk2 | David Snopek | 2024-03-14 | 1 | -2/+1 |
|\ \ | | | | | | | Avoid creating most objects that Godot is going to use placement new to initialize | ||||
| * | | Avoid creating most objects that Godot is going to use placement new to ↵ | David Snopek | 2024-02-26 | 1 | -2/+1 |
| | | | | | | | | | | | | initialize | ||||
* | | | Add support for getting argument count from `Callable`s | A Thousand Ships | 2024-03-14 | 2 | -0/+26 |
| |/ |/| | |||||
* | | Added newer Variant types to `typed_array.hpp` | Allen Pestaluky | 2024-02-06 | 1 | -0/+9 |
|/ | | | | | 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 | ||||
* | Merge pull request #1357 from bruvzg/cpp_64 | David Snopek | 2024-01-19 | 1 | -9/+9 |
|\ | | | | | Switch to 64-bit ints. | ||||
| * | Switch to 64-bit ints. | bruvzg | 2024-01-10 | 1 | -9/+9 |
| | | |||||
* | | Fix `AABB.encloses` failing on shared upper bound | A Thousand Ships | 2024-01-12 | 1 | -3/+3 |
| | | |||||
* | | Add missing `OP_POWER` operator to `Variant` | A Thousand Ships | 2024-01-06 | 1 | -0/+1 |
|/ | |||||
* | Add `Vector2i/3i/4i` methods: `distance_to` and `distance_squared_to` | Jakub Mateusz Marcowski | 2024-01-03 | 3 | -0/+25 |
| | |||||
* | Add PackedRealArray as an alias for PackedFloat(32/64)Array | Aaron Franke | 2023-12-19 | 1 | -0/+6 |
| | |||||
* | Fix comparison of `Callable`s from callable_mp() of the same method | David Snopek | 2023-11-17 | 1 | -27/+63 |
| | |||||
* | Merge pull request #1280 from dsnopek/callable-custom | David Snopek | 2023-11-17 | 2 | -21/+81 |
|\ | | | | | Add `CallableCustom` that devs can use in their GDExtensions | ||||
| * | Add `CallableCustom` that devs can use in their GDExtensions | David Snopek | 2023-11-06 | 2 | -21/+81 |
| | | |||||
* | | Add missing int→Variant conversions | Thaddeus Crews | 2023-11-08 | 1 | -1/+13 |
|/ | |||||
* | clang: Add CallableCustomMethodPointerBase virtual destructor | Martin Capitanio | 2023-10-19 | 1 | -0/+1 |
| | | | | | | | | Fixes #1272 + clang++ (debian v16/v17) warning: destructor called on 'godot::CallableCustomMethodPointerBase' that is abstract but has non-virtual destructor [-Wdelete-abstract-non-virtual-dtor] | ||||
* | Declare explicit specializations for `CharStringT` | Mikael Hermansson | 2023-10-12 | 1 | -0/+12 |
| | |||||
* | Implement `callable_mp()` and `callable_mp_static()` | David Snopek | 2023-09-21 | 1 | -0/+215 |
| | |||||
* | Fix variant call compiler error | Matthew Murphy | 2023-09-09 | 1 | -6/+14 |
| | | | | Co-authored-by: David Snopek <dsnopek@gmail.com> | ||||
* | Merge pull request #1091 from ↵ | David Snopek | 2023-09-02 | 1 | -0/+2 |
|\ | | | | | | | | | Daylily-Zeleen/daylily-zeleen/implement_builtin_classes_vararg_methods Implement vararg methods of builtin classes. | ||||
| * | Implement vararg methods of builtin classes. | Daylily-Zeleen | 2023-07-03 | 1 | -0/+2 |
| | | |||||
* | | Add remaining component-wise `min/max` functions to `Vector*` | A Thousand Ships | 2023-08-16 | 4 | -0/+32 |
| | | |||||
* | | Attempt to fully implement CharString | David Snopek | 2023-06-22 | 1 | -54/+71 |
|/ | |||||
* | Update typed array API to match "GDScript: Fix typed arrays". | bruvzg | 2023-01-31 | 1 | -23/+19 |
| | |||||
* | Merge pull request #1004 from asmaloney/remove-unused-ucaps | Rémi Verschelde | 2023-01-19 | 1 | -1415/+0 |
|\ | | | | | | | Remove unused ucaps header | ||||
| * | Remove unused ucaps header | Andy Maloney | 2023-01-19 | 1 | -1415/+0 |
| | | | | | | | | | | | | These static structs were being included in every file string.hpp was included in... Part of #999 | ||||
* | | Expose some low level functions and String operators. | bruvzg | 2023-01-19 | 1 | -0/+12 |
|/ | |||||
* | Merge pull request #997 from asmaloney/fix-shadow-eulerorder | Rémi Verschelde | 2023-01-18 | 1 | -9/+1 |
|\ | | | | | Fix a shadowed enum (EulerOrder) | ||||
| * | Fix a shadowed enum (EulerOrder) | Andy Maloney | 2023-01-17 | 1 | -9/+1 |
| | | | | | | | | Use the global constants. | ||||
* | | Merge pull request #983 from rburing/variant_to_from_objectid | Rémi Verschelde | 2023-01-18 | 1 | -0/+4 |
|\ \ | |/ |/| | Add conversions between `Variant` and `ObjectID` |