Browse Source

Fix godot3 exporter main_scene conversion

Marcelo Fernandez 8 năm trước cách đây
mục cha
commit
6747c2b3e8
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      editor/editor_export_godot3.cpp

+ 5 - 1
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" },