summaryrefslogtreecommitdiffstats
path: root/editor/editor_run_native.cpp
diff options
context:
space:
mode:
authorTomasz Chabora <kobewi4e@gmail.com>2019-03-22 02:08:28 +0100
committerTomasz Chabora <kobewi4e@gmail.com>2019-05-31 16:02:57 +0200
commit9e18e94dc1cf70d3e4982828cf87317382abc326 (patch)
treebb299056eedd5c4d97b14a71f74b12754289bf44 /editor/editor_run_native.cpp
parent9c3ddf05cb9c59817d885e9daca6e8f61c89dc97 (diff)
downloadredot-engine-9e18e94dc1cf70d3e4982828cf87317382abc326.tar.gz
Ensure main scene is set when running on device
Diffstat (limited to 'editor/editor_run_native.cpp')
-rw-r--r--editor/editor_run_native.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/editor/editor_run_native.cpp b/editor/editor_run_native.cpp
index 06cadca1c0..c7c86df2ac 100644
--- a/editor/editor_run_native.cpp
+++ b/editor/editor_run_native.cpp
@@ -97,6 +97,12 @@ void EditorRunNative::_notification(int p_what) {
void EditorRunNative::_run_native(int p_idx, int p_platform) {
+ if (!EditorNode::get_singleton()->ensure_main_scene(true)) {
+ resume_idx = p_idx;
+ resume_platform = p_platform;
+ return;
+ }
+
Ref<EditorExportPlatform> eep = EditorExport::get_singleton()->get_export_platform(p_platform);
ERR_FAIL_COND(eep.is_null());
/*if (p_idx == -1) {
@@ -139,6 +145,10 @@ void EditorRunNative::_run_native(int p_idx, int p_platform) {
eep->run(preset, p_idx, flags);
}
+void EditorRunNative::resume_run_native() {
+ _run_native(resume_idx, resume_platform);
+}
+
void EditorRunNative::_bind_methods() {
ClassDB::bind_method("_run_native", &EditorRunNative::_run_native);
@@ -193,4 +203,6 @@ EditorRunNative::EditorRunNative() {
deploy_debug_remote = false;
debug_collisions = false;
debug_navigation = false;
+ resume_idx = 0;
+ resume_platform = 0;
}