diff options
-rw-r--r-- | client/player/onscreen_controls/virtual_joystick.gd | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/client/player/onscreen_controls/virtual_joystick.gd b/client/player/onscreen_controls/virtual_joystick.gd index 55a79c25..406de29b 100644 --- a/client/player/onscreen_controls/virtual_joystick.gd +++ b/client/player/onscreen_controls/virtual_joystick.gd @@ -61,11 +61,6 @@ var _touch_index : int = -1 @onready var _default_color : Color = _tip.modulate func _ready() -> void: - if ProjectSettings.get_setting("input_devices/pointing/emulate_mouse_from_touch"): - printerr("The Project Setting 'emulate_mouse_from_touch' should be set to False") - if not ProjectSettings.get_setting("input_devices/pointing/emulate_touch_from_mouse"): - printerr("The Project Setting 'emulate_touch_from_mouse' should be set to True") - if not DisplayServer.is_touchscreen_available() and visibility_mode == Visibility_mode.TOUCHSCREEN_ONLY : hide() |