Files
ersatztv/ErsatzTV.Core/Graphics/MotionEndBehavior.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

9 lines
115 B
C#

namespace ErsatzTV.Core.Graphics;
public enum MotionEndBehavior
{
Disappear = 0,
Loop = 1,
Hold = 2
}