commented out old multiplayer scripts and fixed character select input vector

This commit is contained in:
2026-01-09 07:49:38 -05:00
parent 6024cb88e5
commit dc8585b1f0
5 changed files with 43 additions and 45 deletions

View File

@@ -82,10 +82,9 @@ func _process(delta : float) -> void:
selector_wait -= delta
return
var input_vector : Vector2
if Multiplayer.is_host():
input_vector = Input.get_vector("west","east","north","south")
else:
input_vector = Input.get_vector("ui_focus_prev","ui_focus_next","north","south")
input_vector = Input.get_vector("west","east","north","south")
var move_dir : Vector2 = Vector2.ZERO
if input_vector.x < 0: