babylon.particle.js 647 B

12345678910111213141516171819
  1. var BABYLON;
  2. (function (BABYLON) {
  3. var Particle = (function () {
  4. function Particle() {
  5. this.position = BABYLON.Vector3.Zero();
  6. this.direction = BABYLON.Vector3.Zero();
  7. this.color = new BABYLON.Color4(0, 0, 0, 0);
  8. this.colorStep = new BABYLON.Color4(0, 0, 0, 0);
  9. this.lifeTime = 1.0;
  10. this.age = 0;
  11. this.size = 0;
  12. this.angle = 0;
  13. this.angularSpeed = 0;
  14. }
  15. return Particle;
  16. })();
  17. BABYLON.Particle = Particle;
  18. })(BABYLON || (BABYLON = {}));
  19. //# sourceMappingURL=babylon.particle.js.map