We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7f8dd commit 8210d4fCopy full SHA for 8210d4f
1 file changed
src/tween/TweenData.js
@@ -244,8 +244,8 @@ Phaser.TweenData.prototype = {
244
this.realStart = Date.now();
245
this.totalElapsedMs = 0;
246
247
- console.log('startTime', this.startTime);
248
- console.log('realStart', this.realStart);
+ // console.log('startTime', this.startTime);
+ // console.log('realStart', this.realStart);
249
250
if (this.parent.reverse)
251
{
@@ -386,7 +386,7 @@ Phaser.TweenData.prototype = {
386
387
if (this.percent === 1)
388
389
- console.log("ElapsedTime", this.totalElapsedMs, Date.now() - this.realStart);
+ // console.log("ElapsedTime", this.totalElapsedMs, Date.now() - this.realStart);
390
}
391
392
this.value = this.easingFunction(this.percent);
0 commit comments