| 968 | } |
| 969 | |
| 970 | void EditorData::get_plugin_window_layout(Ref<ConfigFile> p_layout) { |
| 971 | for (int i = 0; i < editor_plugins.size(); i++) { |
| 972 | editor_plugins[i]->get_window_layout(p_layout); |
| 973 | } |
| 974 | } |
| 975 | |
| 976 | bool EditorData::script_class_is_parent(const String &p_class, const String &p_inherits) { |
| 977 | if (!ScriptServer::is_global_class(p_class)) { |
no test coverage detected