Skip to content

Commit

Permalink
Merge pull request #453 from mikebolt/master
Browse files Browse the repository at this point in the history
fix: improve some variable names
  • Loading branch information
mikebolt authored May 27, 2019
2 parents 63ae604 + a6da11d commit f67f085
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Tween.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,23 +271,23 @@ TWEEN.Tween.prototype = {

},

yoyo: function (yy) {
yoyo: function (yoyo) {

this._yoyo = yy;
this._yoyo = yoyo;
return this;

},

easing: function (eas) {
easing: function (easingFunction) {

this._easingFunction = eas;
this._easingFunction = easingFunction;
return this;

},

interpolation: function (inter) {
interpolation: function (interpolationFunction) {

this._interpolationFunction = inter;
this._interpolationFunction = interpolationFunction;
return this;

},
Expand Down

0 comments on commit f67f085

Please sign in to comment.