aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/global.gd b/client/global.gd
index 4ea07a4f..042752cc 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -38,6 +38,7 @@ var languages := [tr("System default"), "en", "de"]
var default_settings := {
"language": DropdownSetting.new(tr("Language"), 0, languages),
"fullscreen": ToggleSetting.new(tr("Fullscreen"), false),
+ "touch_controls": ToggleSetting.new(tr("Enable touch screen conrols"), DisplayServer.is_touchscreen_available()),
"interpolate_camera_rotation": ToggleSetting.new(tr("Interpolate the camera rotation"), true),
"invert_camera": ToggleSetting.new(tr("Invert camera movement"), false),
"server_binary": TextSetting.new(tr("Server binary (leave empty to search PATH)"), "", "Enter path"),