Skip to content

Commit

Permalink
RN gimbal roll change
Browse files Browse the repository at this point in the history
-Change gimbal roll to be on by default. I have observed that almost
every person I have seen use this, streamers, forums users and myself
included always activate roll on all engines immediately in VAB.
The stock gimbals have roll on to begin with. This should be an opt-out
setting rather than opt-in.
  • Loading branch information
raidernick committed Feb 9, 2016
1 parent 67a2374 commit 247fb36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions km_Gimbal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ public void toggleTrim(KSPActionParam param)
}

[KSPField(isPersistant = true, guiActive = true, guiActiveEditor = true, guiName = "Roll")]
public bool enableRoll = false;
public bool enableRoll = true;

[KSPField(isPersistant = true)]
private bool autoSetRoll = true;
private bool autoSetRoll = false;

[KSPEvent(guiName = "Toggle Roll", guiActive = true, guiActiveEditor = true)]
public void toggleRoll()
Expand Down

0 comments on commit 247fb36

Please sign in to comment.