mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-11 21:22:22 +02:00
11 lines
158 B
GDScript
11 lines
158 B
GDScript
extends "res://Overlap/StateMachine/StateMachine.gd"
|
|
|
|
|
|
func _ready():
|
|
states_map = {
|
|
"idle": $Idle,
|
|
"run": $Run,
|
|
"attack": $Attack,
|
|
"roll": $Roll
|
|
}
|