* add end behavior enum and properties * support loop end behavior * implement end behavior hold * update changelog
11 lines
172 B
C#
11 lines
172 B
C#
namespace ErsatzTV.Infrastructure.Streaming.Graphics;
|
|
|
|
public enum MotionElementState
|
|
{
|
|
NotStarted,
|
|
PlayingIn,
|
|
Holding,
|
|
// TODO: PlayingOut?
|
|
Finished
|
|
}
|