Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dist/aframe-particle-system-component.js
Original file line number Diff line number Diff line change
Expand Up @@ -2281,7 +2281,7 @@
options.texture = utils.ensureTypedArg( options.texture, types.OBJECT, {} );

// Assign a UUID to this instance
this.uuid = THREE.Math.generateUUID();
this.uuid = THREE.MathUtils.generateUUID();

// If no `deltaTime` value is passed to the `SPE.Group.tick` function,
// the value of this property will be used to advance the simulation.
Expand Down Expand Up @@ -3143,7 +3143,7 @@
console.warn( 'onParticleSpawn has been removed. Please set properties directly to alter values at runtime.' );
}

this.uuid = THREE.Math.generateUUID();
this.uuid = THREE.MathUtils.generateUUID();

this.type = utils.ensureTypedArg( options.type, types.NUMBER, SPE.distributions.BOX );

Expand Down
Loading