Search the Community
Showing results for tags 'modes'.
-
I've been working on an improved nuclear engine for the past few hours (don't tell my english teacher) and it's almost done. Just one problem, I can't get all three modes to work. It just goes from liquid fuel to intake air, skipping oxidizer. Help is greatly appreciated. Code concerning switching: MODULE { name = MultiModeEngine primaryEngineID = LF secondaryEngineID = OX secondaryEngineID = IA } MODULE { name = ModuleEnginesFX engineID = LF thrustVectorTransformName = thrustTransform exhaustDamage = True ignitionThreshold = 0.1 minThrust = 0 maxThrust = 60 heatProduction = 250 fxOffset = 0, 0, 1.6 EngineType = Nuclear PROPELLANT { name = LiquidFuel ratio = 0.9 DrawGauge = True } atmosphereCurve { key = 0 800 key = 1 185 key = 2 0.001 } } MODULE { name = ModuleEnginesFX engineID = OX thrustVectorTransformName = thrustTransform exhaustDamage = True ignitionThreshold = 0.1 minThrust = 0 maxThrust = 60 heatProduction = 250 fxOffset = 0, 0, 1.6 EngineType = Nuclear PROPELLANT { name = Oxidizer ratio = 0.9 DrawGauge = True } atmosphereCurve { key = 0 800 key = 1 185 key = 2 0.001 } } MODULE { name = ModuleEnginesFX engineID = IA thrustVectorTransformName = thrustTransform exhaustDamage = True ignitionThreshold = 0.1 minThrust = 0 maxThrust = 60 heatProduction = 250 fxOffset = 0, 0, 1.6 EngineType = Nuclear PROPELLANT { name = IntakeAir ratio = 0.9 DrawGauge = True } atmosphereCurve { key = 0 800 key = 1 185 key = 2 0.001 } }