RenderableParticle.js 157 B

12345678910111213
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. */
  4. THREE.RenderableParticle = function () {
  5. this.x;
  6. this.y;
  7. this.screenZ;
  8. this.color;
  9. this.material;
  10. }