summaryrefslogtreecommitdiffstats
path: root/core/doc_data.h
Commit message (Collapse)AuthorAgeFilesLines
* Add ability to flag classes as experimental or deprecated.SaracenOne2022-09-111-0/+8
|
* Merge pull request #62713 from YuriSizov/docs-scripting-annotationsRémi Verschelde2022-07-061-0/+1
|\
| * Add support for documenting built-in annotationsYuri Sizov2022-07-041-0/+1
| |
* | Implement a BitField hintreduz2022-07-051-0/+2
|/ | | | Allows to specify the binder that an enum must be treated as a bitfield.
* Replace most uses of Map by HashMapreduz2022-05-161-2/+2
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Object: Remove unused category boilerplateRémi Verschelde2022-03-261-1/+1
| | | | | | | | | We might want to re-add something like this if/when we find a good use case for it and do the effort to categorize all objects in the API properly. Until then, it's better to remove that boilerplate since it's not needed. Closes #18711.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Make overridden properties link to parent definitionYuri Sizov2021-12-031-0/+1
| | | | Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com>
* Sort and group theme properties in docs, improve formatting for theme and enumsYuri Sizov2021-12-011-1/+5
|
* Enable sorting of operator methods in class documentation.Marcel Admiraal2021-11-291-10/+21
|
* Move the docs for constructors and operators out of methods sectionAaron Franke2021-10-291-0/+2
|
* Implement error return documetationreduz2021-08-241-0/+1
| | | | | | | | | | | | | | Adds ability to add error return documetation to the binder and class reference. Usage example: ```C++ void MyClass::_bind_method() { [..] BIND_METHOD_ERR_RETURN_DOC("load", ERR_FILE_CANT_OPEN, ERR_FILE_UNRECOGNIZED); } ``` One function of ConfigFile was changed as example.
* Add theme item descriptions to the online documentationYuri Sizov2021-08-041-1/+12
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-1/+1
|
* Refactor DocData into core and editor (DocTools) partsThakee Nathees2020-12-021-0/+152