]> Untitled Git - frog-ninja.git/blobdiff - player/model.gd
Added shooting, more proper sword stuff
[frog-ninja.git] / player / model.gd
index ec1a9526821ee8cfd89f509d8db8726f8f75a98b..71415a674d15aa1c64f5ea8df6724a601eb4d0d4 100644 (file)
@@ -7,7 +7,10 @@ class_name PlayerModel
 @onready var moves: Dictionary = {
        "idle": $Idle,
        "walk": $Walk,
-       "dash": $Dash
+       "slash": $Slash,
+       "shoot": $Shoot,
+       "dash": $Dash,
+       "fall": $Fall
 }
 var current_move: Move