diff options
| author | tpart <tpart120@proton.me> | 2024-07-01 23:23:22 +0200 | 
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-07-01 23:23:22 +0200 | 
| commit | 498fb5deae5b67246d757a5f1ac303385b0fd1f4 (patch) | |
| tree | 216b4d7e7c312eba4ffc523f87bb248403e80645 /client/player/onscreen_controls | |
| parent | b51829c8b36881a3e378e589593bf8395acd1b3b (diff) | |
| download | hurrycurry-498fb5deae5b67246d757a5f1ac303385b0fd1f4.tar hurrycurry-498fb5deae5b67246d757a5f1ac303385b0fd1f4.tar.bz2 hurrycurry-498fb5deae5b67246d757a5f1ac303385b0fd1f4.tar.zst | |
Remove unnecessary error messages from joystick
Diffstat (limited to 'client/player/onscreen_controls')
| -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() | 
