浏览代码

: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: