Browse Source

:wrench: Disable axis control

Was annoying becaus mouse is considered to send axis input.
DricomDragon 1 year ago
parent
commit
d99e81cbad
1 changed files with 1 additions and 1 deletions
  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:
 func _new_direction() -> Vector2:
 	var new_dir := Vector2.ZERO
 	var new_dir := Vector2.ZERO
-	new_dir += _direction_from_axis()
+	#new_dir += _direction_from_axis()
 	new_dir += _direction_from_keys()
 	new_dir += _direction_from_keys()
 
 
 	if new_dir == Vector2.ZERO:
 	if new_dir == Vector2.ZERO: