Difference between revisions of "Small Inline Reaction Wheel"

From Kerbal Space Program Wiki
Jump to: navigation, search
Line 20: Line 20:
 
  // conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value
 
  // conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value
 
  // This is done automatically, so any public variable defined in the loaded module can be accessed this way (provided it's value can be parsed)
 
  // This is done automatically, so any public variable defined in the loaded module can be accessed this way (provided it's value can be parsed)
 
+
 
+
 
  // --- general parameters ---
 
  // --- general parameters ---
 
  name = sasModule
 
  name = sasModule
 
  module = SASModule
 
  module = SASModule
 
  author = Il Carnefice
 
  author = Il Carnefice
 
+
 
  // --- asset parameters ---
 
  // --- asset parameters ---
 
  mesh = sasModule.DAE
 
  mesh = sasModule.DAE
Line 34: Line 34:
 
  rimFalloff = 3
 
  rimFalloff = 3
 
  alphaCutoff = 0.5
 
  alphaCutoff = 0.5
 
+
 
  // --- node definitions ---
 
  // --- node definitions ---
 
  // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
 
  // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
 
  node_stack_bottom = 0.0, -2.84541, 0.0, 0.0, 1.0, 0.0
 
  node_stack_bottom = 0.0, -2.84541, 0.0, 0.0, 1.0, 0.0
 
  node_stack_top = 0.0, 2.47453, 0.0, 0.0, 1.0, 0.0
 
  node_stack_top = 0.0, 2.47453, 0.0, 0.0, 1.0, 0.0
 
+
 
  // --- FX definitions ---
 
  // --- FX definitions ---
 
+
 
+
 
  // --- editor parameters ---
 
  // --- editor parameters ---
 
  cost = 2300
 
  cost = 2300
Line 50: Line 50:
 
  //manufacturer = O.M.B. Demolition Enterprises
 
  //manufacturer = O.M.B. Demolition Enterprises
 
  description = SAS: Stability Augmentation System, Spin Auto-Stabilizer, Sickness Avoidance Solution. Whatever you choose to call it, it makes the ship stop spinning around.
 
  description = SAS: Stability Augmentation System, Spin Auto-Stabilizer, Sickness Avoidance Solution. Whatever you choose to call it, it makes the ship stop spinning around.
 
+
 
  // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
 
  // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
attachRules = 1,0,1,1,0
+
attachRules = 1,0,1,1,0
 
+
 
  // --- standard part parameters ---
 
  // --- standard part parameters ---
 
  mass = 0.8
 
  mass = 0.8
Line 62: Line 62:
 
  crashTolerance = 9
 
  crashTolerance = 9
 
  maxTemp = 3400
 
  maxTemp = 3400
 
+
 
  // --- SAS parameters ---
 
  // --- SAS parameters ---
 
+
 
  maxTorque = 10
 
  maxTorque = 10
 
+
 
  // ----- DO NOT EDIT BELOW THIS POINT ------
 
  // ----- DO NOT EDIT BELOW THIS POINT ------
 
|
 
|
 
}}
 
}}

Revision as of 09:58, 16 July 2011

[[|]]