Difference between revisions of "Parts/Command/mk1Cockpits/mk1Cockpit.cfg"
From Kerbal Space Program Wiki
< Parts
Line 1: | Line 1: | ||
− | PART{// this is a sample config file, for determining a good file format for defining part parameters// comment line - ignored by cfg parser// empty lines, or lines without a '=' sign are also ignored// all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting// diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs)// each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though)// each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored.// 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)// --- general parameters ---name = | + | <pre> |
+ | PART | ||
+ | { | ||
+ | // this is a sample config file, for determining a good file format for defining part parameters | ||
+ | // comment line - ignored by cfg parser | ||
+ | // empty lines, or lines without a '=' sign are also ignored | ||
+ | // all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting | ||
+ | // diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs) | ||
+ | // each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though) | ||
+ | // each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored. | ||
+ | // 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) | ||
+ | |||
+ | |||
+ | // --- general parameters --- | ||
+ | name = Mark1Cockpit | ||
+ | module = CommandPod | ||
+ | author = C. Jenkins | ||
+ | |||
+ | // --- asset parameters --- | ||
+ | mesh = model.mu | ||
+ | scale = 0.1 | ||
+ | |||
+ | // --- node definitions --- | ||
+ | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z | ||
+ | node_stack_bottom = 0.0, -2.15, 0.0, 0.0, 1.0, 0.0, 1 | ||
+ | |||
+ | |||
+ | |||
+ | // --- editor parameters --- | ||
+ | cost = 1800 | ||
+ | category = Pods | ||
+ | subcategory = 0 | ||
+ | title = Mk1 Cockpit | ||
+ | manufacturer = C7 Aerospace Division. | ||
+ | description = C7 Aerospace is proud to present out second generation cockpit. This unit is equipped to ensure survival in some of the worst conditions possible. The extra re-enforcement has slightly increased the weight. | ||
+ | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision | ||
+ | attachRules = 1,0,1,1,0 | ||
+ | |||
+ | // --- standard part parameters --- | ||
+ | mass = 1.25 | ||
+ | dragModelType = default | ||
+ | maximum_drag = 0.1 | ||
+ | minimum_drag = 0.1 | ||
+ | angularDrag = 2 | ||
+ | crashTolerance = 45 | ||
+ | maxTemp = 3400 | ||
+ | |||
+ | vesselType = Ship | ||
+ | |||
+ | // --- pod/rcs parameters --- | ||
+ | |||
+ | rotPower = 10 | ||
+ | linPower = 10 | ||
+ | |||
+ | Kp = 1.0 | ||
+ | Kd = 1.0 | ||
+ | |||
+ | // --- tweakables (coming soon...) --- | ||
+ | |||
+ | |||
+ | // --- internal setup --- | ||
+ | CrewCapacity = 1 | ||
+ | |||
+ | |||
+ | INTERNAL | ||
+ | { | ||
+ | name = mk1CockpitInternal | ||
+ | } | ||
+ | |||
+ | MODULE | ||
+ | { | ||
+ | name = ModuleCommand | ||
+ | minimumCrew = 1 | ||
+ | } | ||
+ | |||
+ | RESOURCE | ||
+ | { | ||
+ | name = ElectricCharge | ||
+ | amount = 50 | ||
+ | maxAmount = 50 | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | // ----- DO NOT EDIT BELOW THIS POINT ------ | ||
+ | |||
+ | } | ||
+ | </pre> |
Revision as of 15:05, 18 December 2013
PART { // this is a sample config file, for determining a good file format for defining part parameters // comment line - ignored by cfg parser // empty lines, or lines without a '=' sign are also ignored // all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting // diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs) // each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though) // each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored. // 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) // --- general parameters --- name = Mark1Cockpit module = CommandPod author = C. Jenkins // --- asset parameters --- mesh = model.mu scale = 0.1 // --- node definitions --- // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z node_stack_bottom = 0.0, -2.15, 0.0, 0.0, 1.0, 0.0, 1 // --- editor parameters --- cost = 1800 category = Pods subcategory = 0 title = Mk1 Cockpit manufacturer = C7 Aerospace Division. description = C7 Aerospace is proud to present out second generation cockpit. This unit is equipped to ensure survival in some of the worst conditions possible. The extra re-enforcement has slightly increased the weight. // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision attachRules = 1,0,1,1,0 // --- standard part parameters --- mass = 1.25 dragModelType = default maximum_drag = 0.1 minimum_drag = 0.1 angularDrag = 2 crashTolerance = 45 maxTemp = 3400 vesselType = Ship // --- pod/rcs parameters --- rotPower = 10 linPower = 10 Kp = 1.0 Kd = 1.0 // --- tweakables (coming soon...) --- // --- internal setup --- CrewCapacity = 1 INTERNAL { name = mk1CockpitInternal } MODULE { name = ModuleCommand minimumCrew = 1 } RESOURCE { name = ElectricCharge amount = 50 maxAmount = 50 } // ----- DO NOT EDIT BELOW THIS POINT ------ }