Skip to content

Commit

Permalink
fix: easing in dampangle
Browse files Browse the repository at this point in the history
  • Loading branch information
drcmda committed Sep 23, 2022
1 parent 40809f6 commit 8e5dfbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/maath/src/easing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export function dampAngle(
smoothTime?: number,
delta?: number,
maxSpeed?: number,
easing?: (t: number) => number,
eps?: number
) {
return damp(
Expand All @@ -74,6 +75,7 @@ export function dampAngle(
smoothTime,
delta,
maxSpeed,
easing,
eps
);
}

0 comments on commit 8e5dfbc

Please sign in to comment.