Rover Anti Gravity System (RAGS) by Lunatic Aeronautics

Rover Anti Gravity System (RAGS) by Lunatic Aeronautics

8k Downloads

[Bug ๐Ÿž]: Module switches off unexpectantly

zer0Kerbal opened this issue ยท 1 comments

commented

everything works, press numpad 5 or use the PAW menu to turn it on, turns green, it works, consumes ec, then shuts off. something in the logic is my guess:

public override void OnFixedUpdate()

public override void OnUpdate()

commented
  • The declaration of the variable Consumption was changed from float to double
    • was: public float Consumption = 0.5f;
    • to: public double Consumption = 0.5; // should this scale with the mass of the rover?
    • changing back to float fixed issue