You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Turn off physics servers in the Project Manager.
Copying the editor behaviour of deactivating these servers we're not
using, to reduce CPU load.
(cherry picked from commit 27a6ab457b)
This commit is contained in:
committed by
Rémi Verschelde
parent
2da3f80128
commit
9a181edd87
@@ -2374,6 +2374,10 @@ ProjectManager::ProjectManager() {
|
||||
EditorSettings::create();
|
||||
}
|
||||
|
||||
// Turn off some servers we aren't going to be using in the Project Manager.
|
||||
PhysicsServer::get_singleton()->set_active(false);
|
||||
Physics2DServer::get_singleton()->set_active(false);
|
||||
|
||||
EditorSettings::get_singleton()->set_optimize_save(false); //just write settings as they came
|
||||
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user