public RCSThruster() { name = "default thruster"; nozzlePOS = new Vec3(); directionVEC = new Vec3(); dof = new DoF(); }
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; }