* add end behavior enum and properties * support loop end behavior * implement end behavior hold * update changelog
9 lines
115 B
C#
9 lines
115 B
C#
namespace ErsatzTV.Core.Graphics;
|
|
|
|
public enum MotionEndBehavior
|
|
{
|
|
Disappear = 0,
|
|
Loop = 1,
|
|
Hold = 2
|
|
}
|