Files
GMTK25/ennemy/armored_ennemy.gd
Minimata f3288698fe
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 6s
Create tag and build when new code gets to main / Export (push) Successful in 2m5s
feat: basic dialogue system and opening cutscene
2025-08-01 15:28:17 +02:00

13 lines
241 B
GDScript

extends CharacterBody2D
@onready var animated_sprite: AnimatedSprite2D = $AnimatedSprite2D
func play_anim_run():
animated_sprite.play("run")
func play_anim_idle():
animated_sprite.play("idle")
func hit():
animated_sprite.play("hit")