Skip to content

xlune/XTween

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

XTween

XAML/C# Simple Tween Engine

Example Code

//Simple
var tween = new XTween(target, "Width", 100, 200, 1);
tween.Play();

//Cascade
new XTween(target)
    .SetProperties("Width", "Height")
    .SetFrom(100)
    .SetTo(200)
    .SetDuration(1)
    .Play();

//Serial
XTween.SerialTweens(
    new XTween(target, "Width", 100, 200, 1),
    new XTween(target, "Height", 100, 200, 1)
).Play();

//Parallel
XTween.ParallelTweens(
    new XTween(target, "Width", 100, 200, 1),
    new XTween(target, "Height", 100, 200, 1)
).Play();

About

XAML/C# Simple Tween Engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages