Reputation: 28
I want to use the win2d to make a burning text to my c# UWP XAML blank app project. you can see the animation in the win2d example gallery app - https://www.microsoft.com/en-us/p/win2d-example-gallery/9nblgggxwt9f?activetab=pivot:overviewtab
I want to add this animation with specific text tomy project
entrance how can I do it?
Win2D in Github
Upvotes: 0
Views: 230
Reputation: 8666
You need to dd the Win2D NuGet package to your project first. Here is the detailed steps that you could follow to get start:Win2D NuGet package.
For your requirement, you want to add the burning effect to some text. In the sample you post, it contains the source code about how to add the burning effect.
Xaml code: BurningTextExample-Xaml
Code behind: BurningTextExample-CS
You could follow these source code to create the burning effect.
Upvotes: 0