A slightly odd question, but is there anyway to find out what easing functions are used in the WinRT XAML Theme Animations – more specifically I’m trying to replicate that of the EntranceThemeTransition (which I can’t use directly).
I naively thought using something like .NET reflector would help, but I’d gather I’d need the actual source code rather than what .Net Reflector shows.
Anyone any ideas?
You might like to take a look at the AnimationMetrics sample on MSDN.
There is an
AnimationDescriptionclass that will tell you all sorts of info on the built in animation types, basically anything in theWindows.UI.Core.AnimationMetrics.AnimationEffectenum.For example:
Link: http://code.msdn.microsoft.com/windowsapps/Animation-metrics-sample-acb0220c