summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/engine_ptrcall.hpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotSpartan3222024-10-311-2/+4
|
* Fix incorrect utility call signatureA Thousand Ships2024-04-021-1/+1
|
* Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-101-6/+6
|
* Ensure GDExtension class is the correct type for the Godot engine classDavid Snopek2023-05-161-2/+2
|
* Update to load function pointers for GDExtension interfaceDavid Snopek2023-05-091-5/+5
|
* Sync license copyright with upstream GH-70885Rémi Verschelde2023-01-101-29/+29
|
* Rename godot-headers to gdextension, move header to top folderRémi Verschelde2022-12-141-1/+1
| | | | | | | | Changes the `<godot/gdextension_interface.h>` include to simply `<gdextension_interface.h>`. Refactor and better document the SCons and CMake logic around setting the paths to the header and API JSON file.
* Rename GDNative to GDExtensionGilles Roudière2022-12-121-18/+18
| | | | | | | | | | | | | 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/+6
|
* Run scripts to format and make headers consistentAaron Franke2022-10-091-3/+3
|
* Merge pull request #686 from ondy-personal/patch-1Rémi Verschelde2022-07-181-0/+3
|\
| * Fixed crash when called methods return nullptr.ondy-personal2022-01-311-0/+3
| | | | | | | | | | | | | | | | | | The returned value "ret" may be nullptr in which case the code would crash because "object_get_instance_binding" can't be called on nullptr input. This should be very easy to reproduce, I encountered it pretty much any time I called a method that returned Ref<Something>. E.g.: Ref<GeometryInstance3D> instance; instance.instantiate(); instance.get_mesh(); // Crash because no mesh was set for the instance and the returned value was nullptr.
* | Update copyright yearRémi Verschelde2022-03-151-2/+2
|/
* Rename interface to gdn_interface because it's a defined keyword under windowsBastiaan Olij2021-10-281-5/+5
|
* Fix calling of native functions that return object typesGeorge Marques2021-09-271-2/+2
|
* Replace bindgins to work with extensionsGeorge Marques2021-09-271-0/+94