Ejemplo n.º 1
0
 public RCSThruster()
 {
     name         = "default thruster";
     nozzlePOS    = new Vec3();
     directionVEC = new Vec3();
     dof          = new DoF();
 }
Ejemplo n.º 2
0
 public RCSThruster(Table table)
 {
     name         = (table["Name"].Value == null)? "default thruster" : table["Name"].Value;
     nozzlePOS    = new Vec3(table["nozzlePOS"]);
     directionVEC = new Vec3(table["directionVEC"]);
     dof          = new DoF(table["motionTYPES"]);
     exhaustVFX   = table["exhaustVFX"].Value;
     forceMULTI   = table["forceMULTI"].Value;
     locationQUAD = table["locationQUAD"].IntValue;
 }