mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Clean up EditorFileSystem script parsing
* Optimize only update modified/added/removed files. * Clean up documentation parsing.
This commit is contained in:
parent
e514e3732a
commit
5bdc0d97d3
6 changed files with 82 additions and 65 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue