mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-12 13:32:23 +02:00
10 lines
126 B
GDScript
10 lines
126 B
GDScript
extends AnimatedSprite
|
|
|
|
func stomp():
|
|
visible = true
|
|
frame = 0
|
|
play("stomp")
|
|
|
|
func _animation_finished():
|
|
visible = false
|