summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/property_info.hpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotSpartan3222024-10-311-2/+4
|
* Implement to/from dict helpers for PropertyInfo/MethodInfoChris Cranford2024-04-201-0/+34
|
* Fix PropertyInfo to use hint/usage default constantsChris Cranford2024-04-161-2/+2
|
* Allow GDExtensions to register virtual methods and call them on scriptsDavid Snopek2024-02-121-0/+11
|
* Support `_validate_property()`David Snopek2023-09-121-0/+12
|
* 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-2/+2
| | | | | | | | | | | | | 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
* Use StringName in the whole GDExtension API instead of const char *Emmanuel Leblond2022-11-081-4/+4
|
* Run scripts to format and make headers consistentAaron Franke2022-10-091-1/+1
|
* Change PropertyInfo members to String.bruvzg2022-09-141-16/+5
|
* Add support for `_notification`, `_set`, `_get`, `_get_property_list`, ↵bruvzg2022-08-221-0/+86
`_property_can_revert`, `_property_get_revert`, and `_to_string` methods.