summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-11-16 12:53:31 +0100
committerGitHub <noreply@github.com>2020-11-16 12:53:31 +0100
commit6c2db7393705e1d78ee82c4afcca08abc7a5433e (patch)
tree7a057df7c8c8a1e8dce38f965bf7c12eaf40a7fe /core
parent8e1765d9c7053b658face5220440a16bd343b508 (diff)
parent5770e08c2acc0469c275be6cd040ebbb651cb1f3 (diff)
Merge pull request #43566 from Calinou/remove-pause-mode-script-property-groups
Remove property groups for Pause Mode and Script
Diffstat (limited to 'core')
-rw-r--r--core/object/object.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/object/object.cpp b/core/object/object.cpp
index c3f49856ca..96a41d6852 100644
--- a/core/object/object.cpp
+++ b/core/object/object.cpp
@@ -597,9 +597,6 @@ void Object::get_property_list(List<PropertyInfo> *p_list, bool p_reversed) cons
_get_property_listv(p_list, p_reversed);
if (!is_class("Script")) { // can still be set, but this is for userfriendlyness
-#ifdef TOOLS_ENABLED
- p_list->push_back(PropertyInfo(Variant::NIL, "Script", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_GROUP));
-#endif
p_list->push_back(PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script", PROPERTY_USAGE_DEFAULT));
}
if (!metadata.empty()) {