diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-11-10 17:49:19 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2021-11-10 17:56:59 +0300 |
commit | 2e4d18c92926b15188fc479e3fa432a453b45df8 (patch) | |
tree | 924f37bb0b538b9702172bd791e9b1fd8b8d8bd1 /editor/plugins/ot_features_plugin.cpp | |
parent | e317e34c15cc0b2021198d6b53e515b29170c9f6 (diff) |
Fix EditorInspectorPlugin virtual bindings and add parse_group callback
Diffstat (limited to 'editor/plugins/ot_features_plugin.cpp')
-rw-r--r-- | editor/plugins/ot_features_plugin.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/editor/plugins/ot_features_plugin.cpp b/editor/plugins/ot_features_plugin.cpp index fd42bce06e..c949621e28 100644 --- a/editor/plugins/ot_features_plugin.cpp +++ b/editor/plugins/ot_features_plugin.cpp @@ -185,12 +185,6 @@ bool EditorInspectorPluginOpenTypeFeatures::can_handle(Object *p_object) { return (Object::cast_to<Control>(p_object) != nullptr); } -void EditorInspectorPluginOpenTypeFeatures::parse_begin(Object *p_object) { -} - -void EditorInspectorPluginOpenTypeFeatures::parse_category(Object *p_object, const String &p_parse_category) { -} - bool EditorInspectorPluginOpenTypeFeatures::parse_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const uint32_t p_usage, const bool p_wide) { if (p_path == "opentype_features/_new") { OpenTypeFeaturesAdd *editor = memnew(OpenTypeFeaturesAdd); |