Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubobubobubobubo committed Oct 24, 2023
1 parent eb73821 commit 9f80b7e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/classes/SoundEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ export class SoundEvent extends AudibleEvent {
this.lpenv(depth);
this.lpattack(a);
this.lpdecay(d);
this.lpsustain(0);
this.lprelease(0);
return this;
};

Expand Down Expand Up @@ -221,6 +223,8 @@ export class SoundEvent extends AudibleEvent {
this.hpenv(depth);
this.hpattack(a);
this.hpdecay(d);
this.hpsustain(0);
this.hprelease(0);
return this;
};

Expand Down Expand Up @@ -268,6 +272,8 @@ export class SoundEvent extends AudibleEvent {
this.bpenv(depth);
this.bpattack(a);
this.bpdecay(d);
this.bpsustain(0);
this.bprelease(0);
return this;
};

Expand Down

0 comments on commit 9f80b7e

Please sign in to comment.