Adding a return to the Tween#from method

This commit is contained in:
b-ely 2014-07-06 18:21:03 -05:00
parent da822ab207
commit e02a52b55d

View file

@ -280,7 +280,7 @@ Phaser.Tween.prototype = {
this._object[prop] = properties[prop];
}
}
this.to(_cache, duration, ease, autoStart, delay, repeat, yoyo);
return this.to(_cache, duration, ease, autoStart, delay, repeat, yoyo);
},
/**