mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 06:28:30 +00:00
Removed logs.
This commit is contained in:
parent
90132a7a6f
commit
5ba2a6ca64
2 changed files with 1 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
var CHECKSUM = {
|
||||
build: 'aee01c90-3b68-11e7-a88a-0b109883fb15'
|
||||
build: 'bf75e930-3b69-11e7-9275-855e5660a97d'
|
||||
};
|
||||
module.exports = CHECKSUM;
|
|
@ -7,14 +7,10 @@ var PlayNext = function ()
|
|||
|
||||
if (tweenData.next)
|
||||
{
|
||||
console.log('next');
|
||||
|
||||
this.setCurrentTweenData(tweenData.next);
|
||||
}
|
||||
else if (this.loop)
|
||||
{
|
||||
console.log('loop', this.loopDelay);
|
||||
|
||||
// leaves the state in PENDING_RENDER
|
||||
this.setCurrentTweenData(this.data[0]);
|
||||
|
||||
|
@ -28,15 +24,11 @@ var PlayNext = function ()
|
|||
}
|
||||
else if (this.completeDelay > 0)
|
||||
{
|
||||
console.log('completeDelay');
|
||||
|
||||
this.countdown = this.completeDelay;
|
||||
this.state = TWEEN_CONST.COMPLETE_DELAY;
|
||||
}
|
||||
else
|
||||
{
|
||||
console.log('complete');
|
||||
|
||||
this.state = TWEEN_CONST.PENDING_REMOVE;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue