mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
fix: Inconsistent return in Tween#pause()
This commit is contained in:
parent
2317cb216e
commit
e2a0c091ce
1 changed files with 1 additions and 1 deletions
|
@ -611,7 +611,7 @@ var Tween = new Class({
|
|||
{
|
||||
if (this.state === TWEEN_CONST.PAUSED)
|
||||
{
|
||||
return;
|
||||
return this;
|
||||
}
|
||||
|
||||
this.paused = true;
|
||||
|
|
Loading…
Reference in a new issue