Skip to content

Commit

Permalink
fix: fixed issue with particles rotated randomically without a rotate…
Browse files Browse the repository at this point in the history
… config
  • Loading branch information
matteobruni committed Apr 10, 2021
1 parent 3748821 commit fe1b0f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions core/main/src/Options/Classes/Particles/Rotate/Rotate.ts
Expand Up @@ -19,10 +19,7 @@ export class Rotate extends ValueWithRandom implements IRotate, IOptionLoader<IR
this.animation = new RotateAnimation();
this.direction = RotateDirection.clockwise;
this.path = false;
this.value = {
min: 0,
max: 360,
};
this.value = 0;
}

load(data?: RecursivePartial<IRotate>): void {
Expand Down

0 comments on commit fe1b0f7

Please sign in to comment.