diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-07-19 14:39:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-19 14:39:23 +0200 |
commit | 2ca3e47d66fe3f3d849e2084d516949c84011f4b (patch) | |
tree | 626cc7cece53e4664eb63290d6fd043b48dd2640 /editor/plugins | |
parent | b79303d39a0ec9eea5fb4c267a8db313b52b57a2 (diff) | |
parent | e425f2d4984f6122ff4a8b20d69b79f89538687b (diff) |
Merge pull request #22642 from YeldhamDev/inspector_metadata
Expose "meta" to the Inspector
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.cpp | 2 | ||||
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index f135becf5f..5e87016171 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -3369,7 +3369,7 @@ void TilesetEditorContext::_get_property_list(List<PropertyInfo> *p_list) const void TilesetEditorContext::_bind_methods() { - ClassDB::bind_method("_hide_script_from_inspector", &TilesetEditorContext::_hide_script_from_inspector); + ClassDB::bind_method("_hide_object_properties_from_inspector", &TilesetEditorContext::_hide_object_properties_from_inspector); } TilesetEditorContext::TilesetEditorContext(TileSetEditor *p_tileset_editor) { diff --git a/editor/plugins/tile_set_editor_plugin.h b/editor/plugins/tile_set_editor_plugin.h index 69ad8205a4..946c042b02 100644 --- a/editor/plugins/tile_set_editor_plugin.h +++ b/editor/plugins/tile_set_editor_plugin.h @@ -252,7 +252,7 @@ class TilesetEditorContext : public Object { bool snap_options_visible; public: - bool _hide_script_from_inspector() { return true; } + bool _hide_object_properties_from_inspector() { return true; } void set_tileset(const Ref<TileSet> &p_tileset); private: |