Clean up EditorFileSystem script parsing

* Optimize only update modified/added/removed files.
* Clean up documentation parsing.
This commit is contained in:
Juan Linietsky 2023-01-18 17:32:28 +01:00
parent e514e3732a
commit 5bdc0d97d3
6 changed files with 82 additions and 65 deletions

View file

@ -263,6 +263,15 @@ void ScriptServer::remove_global_class(const StringName &p_class) {
global_classes.erase(p_class);
}
void ScriptServer::remove_global_class_by_path(const String &p_path) {
for (const KeyValue<StringName, GlobalScriptClass> &kv : global_classes) {
if (kv.value.path == p_path) {
global_classes.erase(kv.key);
return;
}
}
}
bool ScriptServer::is_global_class(const StringName &p_class) {
return global_classes.has(p_class);
}