Skip to content

Commit

Permalink
remove redundent console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Alchemist0823 committed Oct 22, 2023
1 parent c51b0b5 commit ad3852e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/behaviors/EmitSubParticleSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ export class EmitSubParticleSystem implements Behavior {

frameUpdate(delta: number): void {
if (!this.subParticleSystem) return;
console.log(this.subEmissions.length, this.subParticleSystem.system.particleNum);
for (let i = 0; i < this.subEmissions.length; i++) {
if (this.subEmissions[i].time >= (this.subParticleSystem!.system as ParticleSystem).duration) {
this.subEmissions[i] = this.subEmissions[this.subEmissions.length - 1];
Expand Down

0 comments on commit ad3852e

Please sign in to comment.