Particle.js 224 B

12345678910111213
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. */
  4. THREE.Particle = function ( material ) {
  5. THREE.Object3D.call( this );
  6. this.material = material;
  7. };
  8. THREE.Particle.prototype = Object.create( THREE.Object3D.prototype );