Files
ersatztv/ErsatzTV.Infrastructure/Streaming/Graphics/Motion/MotionElementState.cs
T
Jason DoveandGitHub 6465c416ff motion end behavior (#2431)
* add end behavior enum and properties

* support loop end behavior

* implement end behavior hold

* update changelog
2025-09-17 03:35:49 +00:00

11 lines
172 B
C#

namespace ErsatzTV.Infrastructure.Streaming.Graphics;
public enum MotionElementState
{
NotStarted,
PlayingIn,
Holding,
// TODO: PlayingOut?
Finished
}