particle.js 244 B

1234567891011
  1. var Particle = function(position){
  2. Collectible.call(this, position);
  3. this.type = "Higgs";
  4. this.mass = 125;
  5. this.charge = 0;
  6. this.start_time = 1234;
  7. this.target = null;
  8. this.velocity = null;
  9. this.points = 125;
  10. this.parent_type = "W";
  11. }