Advertisement
Guest User

Untitled

a guest
Apr 12th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. PART
  2. {
  3. // this is a sample config file, for determining a good file format for defining part parameters
  4. // comment line - ignored by cfg parser
  5. // empty lines, or lines without a '=' sign are also ignored
  6. // all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting
  7. // diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs)
  8. // each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though)
  9. // each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored.
  10. // conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value
  11. // 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)
  12.  
  13.  
  14. // --- general parameters ---
  15. name = parachuteXLI_SP1
  16. module = Part
  17. author = Xyphos
  18.  
  19. // --- asset parameters ---
  20. mesh = XLI-SP1.mu
  21. scale = 1
  22. rescaleFactor = 1
  23.  
  24. // --- node definitions ---
  25. // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z, size
  26. node_stack_top = 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1
  27. node_stack_bottom = 0.0, -0.125, 0.0, 0.0, 1.0, 0.0, 1
  28. node_attach = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0
  29.  
  30. // --- FX definitions ---
  31. sound_parachute_open = activate
  32.  
  33. // --- editor parameters ---
  34. TechRequired = advLanding
  35. entryCost = 4500
  36. cost = 800
  37. category = Utility
  38. subcategory = 0
  39. title = XLI-SP1 Stack Parachute
  40. manufacturer = Xyphos Labs Inc.
  41. description = One of our Engineers decided to recycle an old fuel tank by sticking a parachute inside it and giving it a special lock-tight lid that allows it to be attached in a stack-based configuration. Perfect for upside-down landers and other vessels. WARNING: Make sure the unit is decoupled before deploying.
  42.  
  43. // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
  44. attachRules = 1,0,1,1,0
  45.  
  46. // --- standard part parameters ---
  47. mass = 0.2
  48. dragModelType = default
  49. angularDrag = 3
  50. crashTolerance = 12
  51. maxTemp = 3100
  52.  
  53. breakingForce = 100
  54. breakingTorque = 50
  55.  
  56. stageOffset = -1
  57.  
  58.  
  59.  
  60. // ----- DO NOT EDIT BELOW THIS POINT ------
  61.  
  62. MODULE
  63. {
  64. name = ModuleParachute
  65. invertCanopy = true
  66. autoCutSpeed = 0.5
  67. capName = cap
  68. canopyName = canopy
  69. semiDeployedAnimation = semiDeploy
  70. fullyDeployedAnimation = fullDeploy
  71. stowedDrag = 0.22
  72. semiDeployedDrag = 4
  73. fullyDeployedDrag = 500
  74. minAirPressureToOpen = 0.2
  75. deployAltitude = 250
  76. deploymentSpeed = 1
  77. semiDeploymentSpeed = 1
  78. }
  79. MODULE
  80. {
  81. name = ModuleTestSubject
  82.  
  83. // nowhere: 0, srf: 1, ocean: 2, atmo: 4, space: 8
  84. environments = 4
  85.  
  86. useStaging = True
  87. useEvent = False
  88. }
  89.  
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement