Merge pull request #42527 from aaronfranke/no-global-scr-class
Don't write global script class information if there is none
This commit is contained in:
commit
fe3e475914
2 changed files with 10 additions and 2 deletions
|
@ -275,7 +275,11 @@ void ScriptServer::save_global_classes() {
|
||||||
gcarr.push_back(d);
|
gcarr.push_back(d);
|
||||||
}
|
}
|
||||||
|
|
||||||
ProjectSettings::get_singleton()->set("_global_script_classes", gcarr);
|
if (gcarr.empty()) {
|
||||||
|
ProjectSettings::get_singleton()->clear("_global_script_classes");
|
||||||
|
} else {
|
||||||
|
ProjectSettings::get_singleton()->set("_global_script_classes", gcarr);
|
||||||
|
}
|
||||||
ProjectSettings::get_singleton()->save();
|
ProjectSettings::get_singleton()->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -936,7 +936,11 @@ void EditorData::script_class_save_icon_paths() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ProjectSettings::get_singleton()->set("_global_script_class_icons", d);
|
if (d.empty()) {
|
||||||
|
ProjectSettings::get_singleton()->clear("_global_script_class_icons");
|
||||||
|
} else {
|
||||||
|
ProjectSettings::get_singleton()->set("_global_script_class_icons", d);
|
||||||
|
}
|
||||||
ProjectSettings::get_singleton()->save();
|
ProjectSettings::get_singleton()->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue