1
0
Fork 0

Hide `one-click deploy` button on Android and XR editor.

This commit is contained in:
Anish Mishra 2025-04-22 12:13:27 +05:30
parent 9f03bbf908
commit eb5f1c3484
1 changed files with 3 additions and 0 deletions

View File

@ -593,6 +593,9 @@ EditorRunBar::EditorRunBar() {
run_native = memnew(EditorRunNative);
main_hbox->add_child(run_native);
run_native->connect("native_run", callable_mp(this, &EditorRunBar::_run_native));
#ifdef ANDROID_ENABLED
run_native->hide();
#endif
bool add_play_xr_mode_options = false;
#ifndef XR_DISABLED