summaryrefslogtreecommitdiffstats
path: root/doc/classes/EditorProperty.xml
Commit message (Collapse)AuthorAgeFilesLines
* Make possible to favorite properties in the inspectorMichael Alexsander2024-10-281-0/+7
|
* Add keywords to improve search in the class referenceHugo Locurcio2024-02-221-1/+1
|
* Revert "Allow configuration warnings to refer to a property"Rémi Verschelde2024-02-171-3/+0
| | | | This reverts commit bf37a9bac6ebfb09c0a374260c35ede8373ce427.
* Allow configuration warnings to refer to a propertyRedMser2024-02-081-0/+3
| | | | | This is used by the inspector so it can show a warning icon on a specific property.
* 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'
* Overhaul the top sections of the class reference (GUI classes)VolTer2023-05-281-2/+2
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Remove more instances of 'instance' being used as a verbVolTer2022-11-161-1/+1
|
* Fill random docskobewi2022-10-071-0/+1
|
* Expose `EditorProperty._set_read_only` virtual methodMarc Gilleron2022-09-191-0/+7
|
* Add missing parameters for signal in docsAtlinx2022-08-291-0/+2
|
* Remove Inspector tooltip hack that never actually workedYuri Sizov2022-08-261-6/+0
|
* [doc] Use "param" instead of "code" to refer to parameters (6)Andy Maloney2022-08-121-2/+2
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-26/+26
|
* Improve usability of non-default values in the property inspectorPedro J. Estébanez2022-07-301-0/+7
| | | | | - Provide a visual indication that a (sub)group contains non-default (revertable) values when it's collapsed. - Add a new option to the inspector's tools menu for expanding only (sub)groups containing properties with non-default values.
* Add ability to export Node pointers as NodePathsreduz2022-06-251-1/+1
| | | | | | | | | | | | | This PR implements: * A new hint: PROPERTY_HINT_NODE_TYPE for variant type OBJECT, which can take specific node types as hint string. * The editor will show it as a node path, but will set it as a pointer to a node from the current scene if you select a path. * When scene is saved, the node path is saved, then restored as a pointer. NOTE: This is a proof of concept and this approach will most likely not work. The reason if that, if the node referenced is deleted, then when trying to edit this the node will become invalid. Potential workarounds: Since this uses the Variant API, it should obtain the pointer from the Variant object ID. Yet, this would either only really work in GDScript or it would need to be implemented with workarounds in every language. Alternative ways to make this work: Nodes could export an additional property with a node path (like for which_node, it could be which_node_path). Another alternative: Path editing could happen as a hidden metadata (ignoring the pointer).
* 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.
* Add property value pinningPedro J. Estébanez2021-11-081-1/+9
|
* Use a yellow color for editable children properties instead of redHugo Locurcio2021-10-051-2/+2
| | | | | | This matches the usual "Changes may be lost!" warning color. - Remove a duplicate editor theme color setting declaration.
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* Replace BIND_VMETHOD by new GDVIRTUAL syntaxreduz2021-08-221-0/+5
| | | | | | | | | | | * New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits.
* Improve the inspector plugin documentation and remove a confusing statementYuri Sizov2021-08-061-2/+2
|
* 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.
* Consistently prefix bound virtual methods with _kobewi2021-06-121-9/+9
|
* Let var2str display StringName with correct sigilJonathan Gollnick2021-06-101-1/+1
|
* Document several editor-related classes to 100% completionHugo Locurcio2020-07-201-6/+8
|
* doc: Sync classref with current sourceRémi Verschelde2020-04-201-0/+8
| | | | Add missing enum bindings.
* doc: Sync classref with StringName/Callable changesRémi Verschelde2020-02-221-8/+8
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-1/+1
| | | | Handle removal of Pool*Array types and other recent changes.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* Merge pull request #35589 from akien-mga/doc-drop-category-propertyRémi Verschelde2020-01-261-1/+1
|\ | | | | doc: Drop unused 'category' property from header
| * doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | | | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* | doc: Do not expose Variant::NIL as a type in the class referenceRémi Verschelde2020-01-261-2/+2
|/ | | | | | Fix signals Variant arguments incorrectly listed as Nil. Fixes #12520.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-6/+6
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-13/+13
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* doc: Sync classref with current sourceRémi Verschelde2019-04-241-2/+2
|
* Added inspector plugin documentation.Juan Linietsky2019-04-231-0/+39
| | | | Fixed plugin bindings.
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2019-01-261-0/+14
|
* update class docsKelly Thomas2018-08-311-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2018-07-261-0/+6
| | | | Fix various missing arguments in bindings.
* Sync classref with current sourceRémi Verschelde2018-05-281-0/+111
Also fix binding of Basis.slerp