summaryrefslogtreecommitdiffstats
path: root/src/classes/wrapped.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotSpartan3222024-10-311-2/+4
|
* Update for new NOTIFICATION_POSTINITIALIZE handlingDavid Snopek2024-10-291-4/+4
|
* Avoid `thread_local` on MacOS to prevent issues with hot reloadDavid Snopek2024-10-171-3/+12
|
* Correctly set instance bindings on reloadDavid Snopek2024-09-171-18/+11
|
* Remind developers about `memnew()` in crash message when missing binding ↵David Snopek2024-06-271-2/+1
| | | | callbacks
* Set instance and instance binding in Wrapped constructor.Daylily-Zeleen2024-05-281-7/+18
|
* Fix NOTIFICATION_POSTINITIALIZE sent twice to native parent classDavid Snopek2024-04-241-4/+1
|
* Send NOTIFICATION_POSTINITIALIZE to extension classesDavid Snopek2023-11-291-0/+6
|
* Automatically register only engine classes whose header has been includedDavid Snopek2023-10-161-0/+25
|
* Changes necessary for hot reload to workDavid Snopek2023-09-251-0/+19
|
* Don't call parent _get_property_list when a class doesn't define it.Marc Gilleron2023-07-261-0/+29
| | | | | | Godot is already supposed to call _get_property_list of parent classes, so this binding function must really only return procedural properties of the class it belongs to, and not parent or child classes.
* Update to load function pointers for GDExtension interfaceDavid Snopek2023-05-091-3/+3
|
* Sync license copyright with upstream GH-70885Rémi Verschelde2023-01-101-29/+29
|
* Rename GDNative to GDExtensionGilles Roudière2022-12-121-3/+3
| | | | | | | | | | | | | Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension -> Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION -> EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface
* Fix const qualifier for parameters in GDExtension api functionsEmmanuel Leblond2022-12-031-6/+2
|
* Use StringName in the whole GDExtension API instead of const char *Emmanuel Leblond2022-11-081-4/+8
|
* Uses `StringName` in GDExtension perf critical instance creation & ↵Emmanuel Leblond2022-11-081-5/+5
| | | | method/properties setter/getter
* Update copyright yearRémi Verschelde2022-03-151-2/+2
|
* Fix object_set_instance being wrongly called for built-in wrapped classesGilles Roudière2021-12-061-1/+8
|
* Make extension instances create the corresponding godot object in their ↵Gilles Roudière2021-12-031-0/+56
constructor