diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-28 15:02:13 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-28 15:02:13 +0200 |
commit | 120abd12c2775968d86d83092885d517b59a6fe5 (patch) | |
tree | d3397a7ad8a1c926f0d59e039df594af83abf637 /platform/android/export/export.cpp | |
parent | 6584cd88d9b7e45160ec153ae743801db93d0ab3 (diff) | |
parent | 40b08cb4b669025977ef1fd921045cddd8baac75 (diff) | |
download | redot-engine-120abd12c2775968d86d83092885d517b59a6fe5.tar.gz |
Merge pull request #79504 from Pingar5/master
Android: Add option to always use WiFi to connect to remote debug
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 32b46271fd..682603e46b 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -53,6 +53,9 @@ void register_android_exporter() { EDITOR_DEF("export/android/shutdown_adb_on_exit", true); EDITOR_DEF("export/android/one_click_deploy_clear_previous_install", false); + + EDITOR_DEF("export/android/use_wifi_for_remote_debug", false); + EDITOR_DEF("export/android/wifi_remote_debug_host", "localhost"); #endif Ref<EditorExportPlatformAndroid> exporter = Ref<EditorExportPlatformAndroid>(memnew(EditorExportPlatformAndroid)); |