summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotSpartan3222024-10-3163-126/+252
|
* Merge pull request #1609 from Ivorforce/patch-3David Snopek2024-10-301-3/+4
|\ | | | | Rename Vector4.components -> coords.
| * Rename Vector4.components -> coords. Lukas Tenbrink2024-10-301-3/+4
| | | | | | The use of .components is deprecated.
* | Merge pull request #1568 from dsnopek/post-initialize-44David Snopek2024-10-303-13/+10
|\ \ | | | | | | Update for new NOTIFICATION_POSTINITIALIZE handling
| * | Update for new NOTIFICATION_POSTINITIALIZE handlingDavid Snopek2024-10-293-13/+10
| | |
* | | Merge pull request #1626 from ruffenman/remove-unimplemented-variant-functionsDavid Snopek2024-10-301-2/+0
|\ \ \ | |/ / |/| | Remove unimplemented static variant functions 'blend' and 'interpolate'…
| * | Remove unimplemented static variant functions 'blend' and 'interpolate'. If ↵ruffenman2024-10-141-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 #1594 from dsnopek/macos-thread-localDavid Snopek2024-10-292-3/+21
|\ \ | | | | | | Avoid `thread_local` on MacOS to prevent issues with hot reload
| * | Avoid `thread_local` on MacOS to prevent issues with hot reloadDavid Snopek2024-10-172-3/+21
| | |
* | | Merge pull request #1591 from dsnopek/variant-object-instance-idDavid Snopek2024-10-292-0/+3
|\ \ \ | | | | | | | | Directly get object instance ID from `Variant` and implement `Variant::get_validated_object()`
| * | | Directly get object instance ID from `Variant` and implement ↵David Snopek2024-10-172-0/+3
| | | | | | | | | | | | | | | | `Variant::get_validated_object()`
* | | | Merge pull request #1574 from dsnopek/unicode-class-namesDavid Snopek2024-10-291-1/+1
|\ \ \ \ | | | | | | | | | | Allow unicode class names
| * | | | Allow unicode class namesDavid Snopek2024-09-181-1/+1
| |/ / /
* | / / Sync `Quaternion` with the version in GodotDavid Snopek2024-10-281-44/+42
| |/ / |/| |
* | | Merge pull request #1590 from dsnopek/reload-instance-bindingsDavid Snopek2024-10-172-11/+5
|\ \ \ | | | | | | | | Correctly set instance bindings on reload
| * | | Correctly set instance bindings on reloadDavid Snopek2024-09-172-11/+5
| |/ /
* | / Add p_use_model_front to Basis::looking_at()Florent Guiocheau2024-10-141-1/+1
| |/ |/|
* | Implement typed dictionariesThaddeus Crews2024-09-173-0/+440
|/
* Merge pull request #1561 from Spartan322/gcc-14-Wtemplate-id-cdtor-warningDavid Snopek2024-08-261-1/+1
|\ | | | | Fix GCC 14 -Wtemplate-id-cdtor warning
| * Fix GCC 14 -Wtemplate-id-cdtor warningGeorge L. Albany2024-08-251-1/+1
| | | | | | As was fixed with godotengine/godot#91208
* | Fix missing MAKE_TYPED_ARRAY_INFO for Packed*ArraysAaron Franke2024-08-221-9/+10
|/
* Fix missing type info for PackedVector4ArrayAaron Franke2024-08-103-0/+3
|
* removes warnings generated by GDCLASS usageKlaim (Joël Lamotte)2024-08-081-6/+6
| | | | | | | | This change removes the warnings (unused parameters) coming from code injected by the GDCLASS macro. Contrary to warnings coming from the normal source code which can be suppressed with most compiles by specifying the include directories of this library as external or system, when the code is injected through a macro it is considered in the context of the user, which is the source code of user of the library. That forces the users to modify their code to hide the warnings coming from the mandatory `GDCLASS` here. That's why it's important to remove these warning from that specific macro and ideally any other macro that the user must use.
* Make sure `_get` and `_set` dispatch up the class hierarchyChris Cranford2024-08-011-4/+8
|
* Merge pull request #1509 from YuriSizov/method-bind-is-off-by-oneDavid Snopek2024-07-061-1/+1
|\ | | | | Fix argument metadata when binding methods
| * Fix argument metadata when binding methodsYuri Sizov2024-06-271-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 #1483 from AThousandShips/arr_typed_fixDavid Snopek2024-06-281-6/+16
|\ \ | |/ |/| Fix sharing of typed arrays from constructor
| * Fix sharing of typed arrays from constructorA Thousand Ships2024-06-061-6/+16
| |
* | Merge pull request #1505 from Repiteo/include-formattingDavid Snopek2024-06-251-4/+4
|\ \ | | | | | | Fix `#include` formatting
| * | Fix `#include` formattingThaddeus Crews2024-06-251-4/+4
| | |
* | | Merge pull request #1504 from Repiteo/pre-commit-hooksDavid Snopek2024-06-254-2/+12
|\ \ \ | | | | | | | | Replace legacy hooks with `pre-commit` Python tool
| * | | Integrate `.pre-commit-config.yaml`Thaddeus Crews2024-06-244-2/+12
| |/ /
* / / Add missing enum & ctor for PackedVector4Array implementationChris Cranford2024-06-191-0/+3
|/ /
* | Merge pull request #1446 from ↵David Snopek2024-06-142-16/+35
|\ \ | | | | | | | | | | | | 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-Zeleen2024-05-282-16/+35
| | |
* | | [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵bruvzg2024-06-131-0/+4
| | | | | | | | | | | | new/changed low-level methods to GDExtension API.
* | | Fix undefined symbol error on Linux with virtual methods that take `Node *` ↵David Snopek2024-06-102-14/+14
| |/ |/| | | | | arguments
* | Explicitly refer to `godot` namespace in `GDREGISTER_*_CLASS()` macrosDavid Snopek2024-06-011-5/+5
|/
* Merge pull request #1447 from dsnopek/avoid-double-postinitializeDavid Snopek2024-05-171-0/+6
|\ | | | | Fix NOTIFICATION_POSTINITIALIZE sent twice to native parent classes
| * Fix NOTIFICATION_POSTINITIALIZE sent twice to native parent classDavid Snopek2024-04-241-0/+6
| |
* | Merge pull request #1463 from ↵David Snopek2024-05-171-8/+8
|\ \ | | | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/const_get_class_static Mark return value of `get_class_static` and `get_parent_class_static` as const.
| * | mark return value of `get_class_static` and `get_parent_class_static` as constDaylily-Zeleen2024-05-171-8/+8
| |/
* | Merge pull request #1457 from AThousandShips/foreach_listDavid Snopek2024-05-161-24/+42
|\ \ | | | | | | [Core] Reduce and prevent unnecessary random-access to `List`
| * | Optionaly add compatibility operatorsA Thousand Ships2024-05-071-0/+10
| | |
| * | [Core] Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-071-24/+32
| | | | | | | | | | | | | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator`
* | | Clean up instance bindings for engine singletons to prevent crashDavid Snopek2024-05-102-0/+19
| | |
* | | Merge pull request #1450 from dsnopek/free-property-list-countDavid Snopek2024-05-082-4/+3
|\ \ \ | | | | | | | | Update `free_property_list` callback to take count
| * | | Update `free_property_list` callback to take countDavid Snopek2024-04-302-4/+3
| | | |
* | | | Merge pull request #1374 from dsnopek/gdext-docsRémi Verschelde2024-05-082-0/+9
|\ \ \ \ | | | | | | | | | | Allow submitting documentation to the Godot editor
| * | | | Allow submitting documentation to the Godot editorDavid Snopek2024-05-072-0/+9
| | |/ / | |/| |