summaryrefslogtreecommitdiff
path: root/platform/web/export
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@fb.com>2022-09-13 20:48:33 -0700
committerFredia Huya-Kouadio <fhuya@fb.com>2022-09-13 20:48:33 -0700
commit9d5e48f873ba55b6b7eddb57e754bea96149ab4a (patch)
treefb81c5a0656b15b2814596d1b9454f82de49bedb /platform/web/export
parent2d9583fa3bf2426dabbdd9e9d9b8fd9725b9436c (diff)
Disable menus and functionality that are not relevant on the Android Editor port
Diffstat (limited to 'platform/web/export')
-rw-r--r--platform/web/export/export.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/web/export/export.cpp b/platform/web/export/export.cpp
index 7193bc6ac4..4b4e8b2705 100644
--- a/platform/web/export/export.cpp
+++ b/platform/web/export/export.cpp
@@ -34,6 +34,7 @@
#include "export_plugin.h"
void register_web_exporter() {
+#ifndef ANDROID_ENABLED
EDITOR_DEF("export/web/http_host", "localhost");
EDITOR_DEF("export/web/http_port", 8060);
EDITOR_DEF("export/web/use_tls", false);
@@ -42,6 +43,7 @@ void register_web_exporter() {
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "export/web/http_port", PROPERTY_HINT_RANGE, "1,65535,1"));
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/web/tls_key", PROPERTY_HINT_GLOBAL_FILE, "*.key"));
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/web/tls_certificate", PROPERTY_HINT_GLOBAL_FILE, "*.crt,*.pem"));
+#endif
Ref<EditorExportPlatformWeb> platform;
platform.instantiate();