We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9dec17 commit 4b2af53Copy full SHA for 4b2af53
README.md
@@ -14,7 +14,7 @@ Install-Package TweenSharp
14
var handler = new TweenHandler();
15
16
// Create a tween
17
-var point = new Point(0, 0); // Point is a class!
+var point = new Point(0, 0); // Point is a class (structs will not work)
18
var tween = point.Tween(x => x.X) // select which property to tween
19
.To(10) // target value
20
.In(1.0); // tween time in seconds
0 commit comments