Skip to content

Commit 4baf326

Browse files
committed
Fixed Linear ease map entry.
1 parent c23c523 commit 4baf326

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

v3/src/math/easing/EaseMap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ var Sine = require('./Sine');
1313
// EaseMap
1414
module.exports = {
1515

16-
Power0: Linear.None,
16+
Power0: Linear,
1717
Power1: Quadratic.Out,
1818
Power2: Cubic.Out,
1919
Power3: Quartic.Out,
2020
Power4: Quintic.Out,
2121

22-
Linear: Linear.None,
22+
Linear: Linear,
2323
Quad: Quadratic.Out,
2424
Cubic: Cubic.Out,
2525
Quart: Quartic.Out,

0 commit comments

Comments
 (0)