From 6747c2b3e895ab5ae95fbf29ee1ad503946df03a Mon Sep 17 00:00:00 2001 From: Marcelo Fernandez Date: Thu, 5 Oct 2017 23:04:43 -0300 Subject: [PATCH] Fix godot3 exporter main_scene conversion --- editor/editor_export_godot3.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/editor/editor_export_godot3.cpp b/editor/editor_export_godot3.cpp index 12ae5591265..2e09cceb1e3 100644 --- a/editor/editor_export_godot3.cpp +++ b/editor/editor_export_godot3.cpp @@ -36,7 +36,11 @@ static const char *globals_renames[][2] = { /* [application] */ - // no change + { "application/main_scene", "application/run/main_scene" }, + { "application/main_loop_type", "application/run/main_loop_type" }, + { "application/disable_stdout", "application/run/disable_stdout" }, + { "application/disable_stderr", "application/run/disable_stderr" }, + { "application/frame_delay_msec", "application/run/frame_delay_msec" }, /* [debug] */ { "debug/profiler_max_functions", "debug/profiler/max_functions" },