You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ImplicitAnimations don't work for the first three changes.
Furthermore, when setting the animation key for the ImplicitAnimations, if the key name does not equal the property that is going to animate. The ImplicitAnimations will not work at all.
For example:
varani=compositor.CreateVector3KeyFrameAnimation();ani.Target="Offset";ani.InsertExpressionKeyFrame(1f,"this.FinalValue",easing);ani.Duration=TimeSpan.FromMilliseconds(445);visual.ImplicitAnimations??=compositor.CreateImplicitAnimationCollection();visual.ImplicitAnimations["Offset"]=ani;// animation will work but still buggyvisual.ImplicitAnimations["A_RANDOM_NAME"]=ani;// not working at all
Describe the bug
ImplicitAnimations don't work for the first three changes.
Furthermore, when setting the animation key for the ImplicitAnimations, if the key name does not equal the property that is going to animate. The ImplicitAnimations will not work at all.
For example:
To Reproduce
See repro: https://github.com/laolarou726/CompositionBug
Also see issue: #15096
Expected behavior
All the animations should work for every value change and trigger.
Avalonia version
latest nightly
OS
Windows
Additional context
No response
The text was updated successfully, but these errors were encountered: