summaryrefslogtreecommitdiffstats
path: root/doc/classes/EngineDebugger.xml
Commit message (Collapse)AuthorAgeFilesLines
* Clarify `EngineDebugger` and `EditorDebugger*` documentationDanil Alexeev2024-10-211-1/+2
|
* Add missing period for sentences in classrefHaoyu Qiu2024-09-201-1/+1
|
* Expose several EngineDebugger methods and signals as plugin callbacksChris Cranford2024-06-101-0/+85
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Validate code tags in documentation for potential paramsYuri Sizov2023-04-261-1/+1
| | | | | | | Adds a check to make_rst to look for matches between the text inside of the [code][/code] tag and known param identifiers. Fixes most of what was revealed.
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* [doc] Use "param" instead of "code" to refer to parameters (6)Andy Maloney2022-08-121-7/+7
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-16/+16
|
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Fix typos with codespellRémi Verschelde2022-02-101-1/+1
| | | | | | | Using codespell 2.2-dev from current git. Added `misc/scripts/codespell.sh` to make it easier to run it once in a while and update the skip and ignore lists.
* [Debugger] New extensible EngineProfiler class.Fabio Alessandrelli2022-02-061-7/+2
| | | | | Uses GDExtension, replaces old Callable system for profilers, and is also used internally.
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-58/+29
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-1/+1
|
* Added debugger plugin supportsimpu2020-08-261-0/+132
Changes: * EngineDebugger is exposed to gdscript. Game side of communication can be implemented through it. * EditorDebuggerPlugin is added which handles the editor side of communication.