11 lines
207 B
GDScript
11 lines
207 B
GDScript
extends CreatureRoot
|
|
#extends KinematicBody
|
|
|
|
|
|
func _ready():
|
|
animation_walk = "raference_march_loop"
|
|
animation_run = "raference_run_loop"
|
|
|
|
|
|
func get_animation_idle():
|
|
return "raference_idle_loop"
|