You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-27 15:57:02 +00:00
Makes project manager never initialize mono debug.
The heuristic whether we're in the project manager inside GDMono
didn't work if the project manager was launched by not having any path
to run.
This is fixed now by making a Main::is_project_manager().
(cherry picked from commit 1099838079)
This commit is contained in:
committed by
Hein-Pieter van Braam
parent
f49601a934
commit
4b581104e7
@@ -121,13 +121,18 @@ static bool force_lowdpi = false;
|
||||
static int init_screen = -1;
|
||||
static bool use_vsync = true;
|
||||
static bool editor = false;
|
||||
static bool project_manager = false;
|
||||
static bool show_help = false;
|
||||
static bool disable_render_loop = false;
|
||||
static int fixed_fps = -1;
|
||||
|
||||
static OS::ProcessID allow_focus_steal_pid = 0;
|
||||
|
||||
static bool project_manager = false;
|
||||
|
||||
bool Main::is_project_manager() {
|
||||
return project_manager;
|
||||
}
|
||||
|
||||
void initialize_physics() {
|
||||
|
||||
/// 3D Physics Server
|
||||
|
||||
Reference in New Issue
Block a user