/** * @author alteredq / http://alteredqualia.com/ */ THREE.ParticleSystem = function ( geometry, material ) { THREE.Object3D.call( this ); this.geometry = geometry; this.material = material; this.sortParticles = false; }; THREE.ParticleSystem.prototype = new THREE.Object3D(); THREE.ParticleSystem.prototype.constructor = THREE.ParticleSystem;