mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
9 lines
254 B
C#
9 lines
254 B
C#
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;
|
|
}
|