mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-06 17:45:55 +00:00
Mapping
This commit is contained in:
parent
f9d8d37913
commit
538f4f215f
13 changed files with 105 additions and 17 deletions
13
Scripts/Components/Actors/HitShieldAnimation.cs
Normal file
13
Scripts/Components/Actors/HitShieldAnimation.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue