diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-11-10 21:56:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 21:56:20 +0100 |
commit | 7b3abf17fdde312eb8ae85924e511f30bce4ea3b (patch) | |
tree | 9e688f0b0e5b223a5e110d90ebe6dc8f9ebaaac7 /scene | |
parent | 3668312e786d0e06fee627e5255edef88710cc9b (diff) | |
parent | e3def401609a7fd0304779d0a95f01e039e7478d (diff) |
Merge pull request #49708 from megalobyte/editor_description_fix
Diffstat (limited to 'scene')
-rw-r--r-- | scene/main/node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp index 3be73af861..44420fcc31 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -2889,7 +2889,7 @@ void Node::_bind_methods() { ADD_PROPERTY(PropertyInfo(Variant::INT, "process_priority"), "set_process_priority", "get_process_priority"); ADD_GROUP("Editor Description", "editor_"); - ADD_PROPERTY(PropertyInfo(Variant::STRING, "editor_description", PROPERTY_HINT_MULTILINE_TEXT, "", PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_INTERNAL), "set_editor_description", "get_editor_description"); + ADD_PROPERTY(PropertyInfo(Variant::STRING, "editor_description", PROPERTY_HINT_MULTILINE_TEXT), "set_editor_description", "get_editor_description"); GDVIRTUAL_BIND(_process, "delta"); GDVIRTUAL_BIND(_physics_process, "delta"); |