diff --git a/Documentation~/articles/tweens.md b/Documentation~/articles/tweens.md index c7414f7..107fa72 100644 --- a/Documentation~/articles/tweens.md +++ b/Documentation~/articles/tweens.md @@ -6,7 +6,7 @@ slug: "/manual/tweens" A tween is an animation of a value from a start position to an end position using an easing function, providing a natural sense of motion. The **Tweening** package provides two main types of tweens, both of which inherit from the base class [Tween](/api/Zigurous.Tweening/Tween). -- [Tweener](/api/Zigurous.Tweening/Tweener-1) +- [Tweener](/api/Zigurous.Tweening/Tweener-2) - [Sequence](/api/Zigurous.Tweening/Sequence)
@@ -58,7 +58,7 @@ tween.autoStart = true; // starts the tween automatically after being initialize tween.autoKill = true; // kills the tween automatically after completing ``` -There are also [callback functions](/manual/callbacks) that can be set on any tween.
+There are also [callback functions](/manual/events) that can be set on any tween.
All of these properties can be set with [property chaining](/manual/property-chaining) methods.
diff --git a/Documentation~/filterconfig.yml b/Documentation~/filterconfig.yml index ed45165..6f28c45 100644 --- a/Documentation~/filterconfig.yml +++ b/Documentation~/filterconfig.yml @@ -16,10 +16,10 @@ apiRules: - exclude: uidRegex: ^Zigurous.Tweening.Tween.On* - exclude: - uidRegex: ^Zigurous.Tweening.Tweener`1.Animate + uidRegex: ^Zigurous.Tweening.Tweener`2.Animate - exclude: - uidRegex: ^Zigurous.Tweening.Tweener`1.IsFinished + uidRegex: ^Zigurous.Tweening.Tweener`2.IsFinished - exclude: - uidRegex: ^Zigurous.Tweening.Tweener`1.On* + uidRegex: ^Zigurous.Tweening.Tweener`2.On* - exclude: uidRegex: ^Zigurous.Tweening.*.Tweens