File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ class MD2CharacterComplex {
7878 this . backAcceleration = 600 ;
7979
8080 /**
81- * The character's front decceleration .
81+ * The character's front deceleration .
8282 *
8383 * @type {number }
8484 * @default 600
8585 */
86- this . frontDecceleration = 600 ;
86+ this . frontDeceleration = 600 ;
8787
8888 /**
8989 * The character's angular speed.
@@ -684,7 +684,7 @@ class MD2CharacterComplex {
684684 if ( this . speed > 0 ) {
685685
686686 const k = exponentialEaseOut ( this . speed / this . maxSpeed ) ;
687- this . speed = MathUtils . clamp ( this . speed - k * delta * this . frontDecceleration , 0 , this . maxSpeed ) ;
687+ this . speed = MathUtils . clamp ( this . speed - k * delta * this . frontDeceleration , 0 , this . maxSpeed ) ;
688688
689689 } else {
690690
You can’t perform that action at this time.
0 commit comments