summaryrefslogtreecommitdiffstats
path: root/src/core/object.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand preambles to RedotSpartan3222024-10-311-2/+4
|
* Fix warnings emitted with -WallRichard Hozák2024-06-021-1/+1
|
* Implement to/from dict helpers for PropertyInfo/MethodInfoChris Cranford2024-04-201-0/+58
|
* Identifiers containing double underscore are reserved according to the C++ ↵Andy Maloney2023-06-151-1/+1
| | | | | | | | | | | | | | | standard Rename __* to _gde_* https://timsong-cpp.github.io/cppwp/n3337/global.names https://en.cppreference.com/w/cpp/language/identifiers Identifiers appearing as a token or preprocessing token (i.e., not in user-defined-string-literal like operator ""id) (since C++11) of one of the following forms are reserved: - identifiers with a double underscore anywhere; - identifiers that begin with an underscore followed by an uppercase letter; - in the global namespace, identifiers that begin with an underscore.
* Ensure GDExtension class is the correct type for the Godot engine classDavid Snopek2023-05-161-0/+30
|
* Sync license copyright with upstream GH-70885Rémi Verschelde2023-01-101-29/+29
|
* Rename GDNative to GDExtensionGilles Roudière2022-12-121-5/+5
| | | | | | | | | | | | | 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-3/+3
|
* [Method Bind] Add support for default argument values and static method ↵bruvzg2022-05-061-5/+5
| | | | binding. Sync headers.
* Update copyright yearRémi Verschelde2022-03-151-2/+2
|
* Replace bindgins to work with extensionsGeorge Marques2021-09-271-0/+54