using Godot; using System; public partial class AnimatedTexture : TextureRect { [Export] public int Rows { get; private set; } = 1; [Export] public int Columns { get; private set; } = 2; [Export] public int Fps { get; private set; } = 30; }