This commit is contained in:
Marco 2025-04-09 15:12:08 +02:00
commit 538f4f215f
13 changed files with 105 additions and 17 deletions

View file

@ -0,0 +1,13 @@
using Godot;
namespace Cirno.Scripts.Components.Actors;
public partial class HitShieldAnimation : Node2D
{
[Export] public AnimatedSprite2D Sprite { get; private set; }
public void Play()
{
Sprite?.Play();
}
}