#Changing ISP of a specific engine

3 messages · Page 1 of 1 (latest)

minor atlas
#

I want to change the Vacuum ISP of a specific engine.
But the Patch i have created not works as intended.

@PART[cryoengine-etna-1]:FOR[CryoEngines]:FINAL
{
@MODULE[ModuleEnginesFX]
{

    !atmosphereCurve {}
    atmosphereCurve
    {
        key = 0 420
        key = 1 365
        key = 4 300
        key = 12 100
    }
}

}

For some reason the ISP is changed to 420 everywhere, not only for vacuum.

What is wrong?

red imp
#

@PART[cryoengine-etna-1]:FINAL
{
@MODULE[ModuleEnginesFX]
{

    @atmosphereCurve
    {
        key = 0 420
        key = 1 365
        key = 4 300
        key = 12 100
    }

}
}

#

try that