[csharp] TrackEntry.AnimationEnd setter. :p

This commit is contained in:
John 2017-06-16 07:28:25 +08:00 committed by GitHub
parent 0231f29d96
commit 733f634e19

View File

@ -773,7 +773,7 @@ namespace Spine {
/// <summary> /// <summary>
/// Seconds for the last frame of this animation. Non-looping animations won't play past this time. Looping animations will /// Seconds for the last frame of this animation. Non-looping animations won't play past this time. Looping animations will
/// loop back to <see cref="TrackEntry.AnimationStart"/> at this time. Defaults to the animation duration.</summary> /// loop back to <see cref="TrackEntry.AnimationStart"/> at this time. Defaults to the animation duration.</summary>
public float AnimationEnd { get { return animationEnd; } } public float AnimationEnd { get { return animationEnd; } set { animationEnd = value; } }
/// <summary> /// <summary>
/// The time in seconds this animation was last applied. Some timelines use this for one-time triggers. Eg, when this /// The time in seconds this animation was last applied. Some timelines use this for one-time triggers. Eg, when this