diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-06-27 11:14:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 11:14:36 +0200 |
commit | fbc37774675f7bf6daabf667eaf2124e9d662f9d (patch) | |
tree | 4906a415d53bf3b155a7083501ff14ee1cc0c73a /doc/classes | |
parent | 898e09e2e63c221b861cc64b12adc80dc48ce5eb (diff) | |
parent | b7c41f9ba1afe892af465b56cd942b83e1a19b13 (diff) | |
download | redot-engine-fbc37774675f7bf6daabf667eaf2124e9d662f9d.tar.gz |
Merge pull request #62185 from reduz/export-node-pointer-path
Add ability to export Node pointers as NodePaths
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/@GlobalScope.xml | 4 | ||||
-rw-r--r-- | doc/classes/EditorProperty.xml | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 475d166925..863ea899ee 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -2583,7 +2583,9 @@ <constant name="PROPERTY_HINT_LOCALIZABLE_STRING" value="44" enum="PropertyHint"> Hints that a dictionary property is string translation map. Dictionary keys are locale codes and, values are translated strings. </constant> - <constant name="PROPERTY_HINT_MAX" value="45" enum="PropertyHint"> + <constant name="PROPERTY_HINT_NODE_TYPE" value="45" enum="PropertyHint"> + </constant> + <constant name="PROPERTY_HINT_MAX" value="46" enum="PropertyHint"> </constant> <constant name="PROPERTY_USAGE_NONE" value="0" enum="PropertyUsageFlags"> </constant> diff --git a/doc/classes/EditorProperty.xml b/doc/classes/EditorProperty.xml index c428233372..84f8523da3 100644 --- a/doc/classes/EditorProperty.xml +++ b/doc/classes/EditorProperty.xml @@ -38,7 +38,7 @@ Gets the edited object. </description> </method> - <method name="get_edited_property"> + <method name="get_edited_property" qualifiers="const"> <return type="StringName" /> <description> Gets the edited property. If your editor is for a single property (added via [method EditorInspectorPlugin._parse_property]), then this will return the property. |