Compare commits

..

1 Commits

Author SHA1 Message Date
speak 9160c3cf57
Merge 2dfe775f7b into e9884589a8 2024-12-12 23:34:57 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ Let's illustrate this with a practical code example:
func _idle_update(delta: float) -> void:
var dir: Vector2 = Input.get_vector(
&"ui_left", &"ui_right", &"ui_up", &"ui_down")
if not dir.is_zero_approx():
if dir.is_zero_approx():
hsm.dispatch(&"movement_started")