Преглед на файлове

:wrench: Disable axis control

Was annoying becaus mouse is considered to send axis input.
DricomDragon преди 1 година
родител
ревизия
d99e81cbad
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      netnet/component/entity/jumper/jumper_input.gd

+ 1 - 1
netnet/component/entity/jumper/jumper_input.gd

@@ -31,7 +31,7 @@ func _process(delta: float) -> void:
 
 func _new_direction() -> Vector2:
 	var new_dir := Vector2.ZERO
-	new_dir += _direction_from_axis()
+	#new_dir += _direction_from_axis()
 	new_dir += _direction_from_keys()
 
 	if new_dir == Vector2.ZERO: