Jumar Macato
8 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
2 changed files with
2 additions and
7 deletions
-
src/Avalonia.Animation/Animation.cs
-
src/Avalonia.Animation/AnimatorStateMachine`1.cs
|
|
|
@ -85,12 +85,7 @@ namespace Avalonia.Animation |
|
|
|
/// Sets the behavior for having a delay between repeats for this animation.
|
|
|
|
/// </summary>
|
|
|
|
public bool DelayBetweenRepeats { get; set; } |
|
|
|
|
|
|
|
public Animation() |
|
|
|
{ |
|
|
|
this.CollectionChanged += delegate { _isChildrenChanged = true; }; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private (IList<IAnimator> Animators, IList<IDisposable> subscriptions) InterpretKeyframes(Animatable control) |
|
|
|
{ |
|
|
|
var handlerList = new List<(Type type, AvaloniaProperty property)>(); |
|
|
|
|
|
|
|
@ -73,7 +73,7 @@ namespace Avalonia.Animation |
|
|
|
|
|
|
|
animationDirection = animation.PlaybackDirection; |
|
|
|
fillMode = animation.FillMode; |
|
|
|
onComplete = onComplete; |
|
|
|
this.onComplete = onComplete; |
|
|
|
} |
|
|
|
|
|
|
|
public void Step(PlayState playState, long frameTick, Func<double, T, T> Interpolator) |
|
|
|
|