babylon.particle.ts 410 B

12345678910111213
  1. module BABYLON {
  2. export class Particle {
  3. public position = BABYLON.Vector3.Zero();
  4. public direction = BABYLON.Vector3.Zero();
  5. public color = new BABYLON.Color4(0, 0, 0, 0);
  6. public colorStep = new BABYLON.Color4(0, 0, 0, 0);
  7. public lifeTime = 1.0;
  8. public age = 0;
  9. public size = 0;
  10. public angle = 0;
  11. public angularSpeed = 0;
  12. }
  13. }