Skip to content

Commit

Permalink
Fix broken docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgraham committed Nov 9, 2023
1 parent 656e269 commit bc74827
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Documentation~/articles/tweens.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<hr/>
Expand Down Expand Up @@ -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.<br/>
There are also [callback functions](/manual/events) that can be set on any tween.<br/>
All of these properties can be set with [property chaining](/manual/property-chaining) methods.

<hr/>
Expand Down
6 changes: 3 additions & 3 deletions Documentation~/filterconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bc74827

Please sign in to comment.