Replies: 1 comment 2 replies
-
Composition animations were added as a side-feature for the new composition renderer that was implemented for 11.0 release. While renderer itself was a main and stable feature, animations were shipped as an experimental API. It's not prioritized right now, and more APIs, including ColorKeyFrameAnimation, still has to be implemented. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there support with CompositionVisuals to essentially create a ColorKeyFrameAnimation without having to go the CustomVisual route?
Context:
So I was having a look at amwx's Fluent Avalonia sample splash screen, and felt inspired to really see what was possible with the CompositionVisuals.
I came upon issues when I grabbed one for a Path element, and a runtime error couldn't find Fill amongst the property list for the composition visual.
So I delved further into Avalonia and found CompositionPropertySet at the heart of determining what properties are available and providing it. It seems to support only value properties.
I'm sorta confused on what the design spec was for the composition renderer, and where it's limitations are toward these kind of animated visual compositions.
Beta Was this translation helpful? Give feedback.
All reactions