Sorry to be bombarding this forum with questions, but I've got another one. This one is pretty straightforward, but I can't for the life of me figure it out.
How do you patch an MM value with an exponent? e.g. If I want to multiply a value, I write:
@value *= (a number)
But how do I do that for an exponential value?
Basically, I'm still trying to write a config that scales all parts up by a factor of 2. So, rescaleFactor = 2, but that means values like mass, volume and resource amounts need to be scaled up by a factor of 3. I'm not sure how to tell Module Manager to do this.
Would it work to write something like:
@value = #value*#value*#value
I really am very new to this!