Revert "Fix plugin script classes defined even if inactive."

This commit is contained in:
Rémi Verschelde 2019-10-02 19:17:59 +02:00 committed by GitHub
parent f9e9cc94cd
commit c287f220ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1411,9 +1411,6 @@ String EditorFileSystem::_get_global_script_class(const String &p_type, const St
}
void EditorFileSystem::_scan_script_classes(EditorFileSystemDirectory *p_dir) {
if (p_dir->parent && p_dir->parent->name == "addons" && !EditorNode::get_singleton()->is_addon_plugin_enabled(p_dir->name)) {
return;
}
int filecount = p_dir->files.size();
const EditorFileSystemDirectory::FileInfo *const *files = p_dir->files.ptr();
for (int i = 0; i < filecount; i++) {