feat: basic tween system added

This commit is contained in:
2025-03-31 19:38:01 +03:00
parent cd2cd89eae
commit 9f3e39e337
9 changed files with 362 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Syntriax.Engine.Systems.Tween;
public enum TweenState
{
Idle = 0b00001,
Playing = 0b00010,
Paused = 0b00100,
Cancelled = 0b01000,
Completed = 0b10000,
}