babylon.particle.js 527 B

12345678910111213141516
  1. var BABYLON = BABYLON || {};
  2. (function () {
  3. BABYLON.Particle = function () {
  4. };
  5. BABYLON.Particle.prototype.position = null;
  6. BABYLON.Particle.prototype.direction = null;
  7. BABYLON.Particle.prototype.lifeTime = 1.0;
  8. BABYLON.Particle.prototype.age = 0;
  9. BABYLON.Particle.prototype.size = 0;
  10. BABYLON.Particle.prototype.angle = 0;
  11. BABYLON.Particle.prototype.angularSpeed = 0;
  12. BABYLON.Particle.prototype.color = null;
  13. BABYLON.Particle.prototype.colorStep = null;
  14. })();