Difference between revisions of "Parts/Aero/cones/smallNoseCone.cfg"

From Kerbal Space Program Wiki
Jump to: navigation, search
m (*update to 0.24.2;)
m (*update to 1.0.4;)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Part config|Standard NC|2=PART
+
{{Part config|Small Nose Cone|2=PART
 
{
 
{
// this is a sample config file, for determining a good file format for defining part parameters
+
name = standardNoseCone
// comment line - ignored by cfg parser
+
module = Part
// empty lines, or lines without a '=' sign are also ignored
+
author = C. Jenkins, Porkjet
// all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting
+
rescaleFactor = 1
// diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs)
+
node_stack_bottom01 = 0.0, -0.25, 0.0, 0.0, -1.0, 0.0, 0
// each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though)
+
node_attach = 0, 0, -0.156, 0.0, 0.0, 0.0
// each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored.
+
TechRequired = stability
// conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value
+
entryCost = 1800
// 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)
+
cost = 180
 
+
category = Aero
 
+
subcategory = 0
// --- general parameters ---
+
title = Small Nose Cone
name = standardNoseCone
+
manufacturer = C7 Aerospace Division
module = Part
+
description = An aerodynamic nose cap.
author = C. Jenkins
+
attachRules = 1,1,1,1,0
 
+
mass = 0.01
// --- asset parameters ---
+
dragModelType = default
mesh = model.mu
+
maximum_drag = 0.1
scale = 1.0
+
minimum_drag = 0.1
 
+
angularDrag = .25
// --- node definitions ---
+
crashTolerance = 40
// definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
+
maxTemp = 2400
 
+
fuelCrossFeed = True
node_stack_bottom01 = 0.0, -0.138, 0.0, 0.0, 1.0, 0.0
+
bulkheadProfiles = size0
 
+
thermalMassModifier = 6.0
 
+
emissiveConstant = 0.95
 
+
MODEL
// --- FX definitions ---
+
{
 
+
model = Squad/Parts/Aero/cones/TinyCone
 
+
}
// --- editor parameters ---
+
MODULE
TechRequired = advAerodynamics
+
{
entryCost = 6800
+
name = ModuleAnimateHeat
cost = 180
+
ThermalAnim = Cone_Heat
category = Aero
+
}
subcategory = 0
 
title = Standard NC
 
manufacturer = C7 Aerospace Division
 
description = An aerodynamic nose cap.  
 
 
 
// attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
 
attachRules = 1,0,1,0,0
 
stackSymmetry = 2
 
 
 
// --- standard part parameters ---
 
mass = 0.1
 
dragModelType = default
 
maximum_drag = 0.1
 
minimum_drag = 0.1
 
angularDrag = .25
 
crashTolerance = 40
 
maxTemp = 3400
 
fuelCrossFeed = True
 
 
 
// ----- DO NOT EDIT BELOW THIS POINT ------
 
 
}
 
}
  
 
}}
 
}}

Latest revision as of 12:13, 27 June 2015

This is the configuration file for Small Nose Cone.
PART
{
	name = standardNoseCone
	module = Part
	author = C. Jenkins, Porkjet
	rescaleFactor = 1
	node_stack_bottom01 = 0.0, -0.25, 0.0, 0.0, -1.0, 0.0, 0
	node_attach = 0, 0, -0.156, 0.0, 0.0, 0.0
	TechRequired = stability
	entryCost = 1800
	cost = 180
	category = Aero
	subcategory = 0
	title = Small Nose Cone
	manufacturer = C7 Aerospace Division
	description = An aerodynamic nose cap.
	attachRules = 1,1,1,1,0
	mass = 0.01
	dragModelType = default
	maximum_drag = 0.1
	minimum_drag = 0.1
	angularDrag = .25
	crashTolerance = 40
	maxTemp = 2400
	fuelCrossFeed = True
	bulkheadProfiles = size0
	thermalMassModifier = 6.0
	emissiveConstant = 0.95
	MODEL
	{
		model = Squad/Parts/Aero/cones/TinyCone
	}
	MODULE
	{
		name = ModuleAnimateHeat
		ThermalAnim = Cone_Heat
	}
}