using Godot; namespace Cirno.Scripts.Components.Actors; public partial class PooledAnimatedSpritePlayer3D : AnimatedSprite3D { public void PlayAnimation() { this.SetFrame(0); this.Play(); } }