Jump to content

MM patch to disable roll/pitch/yaw on RCS by default?


fourfa

Recommended Posts

I'd like to come up with a simple Module Manager patch to disable the roll / pitch / yaw toggles on RCS thrusters by default.  I want these to be off about 95% of the time.  Changing the setting in the VAB/SPH is only a few clicks, but when I invariably forget and have to change it in flight, it's a real pain as they don't change in symmetry any more.  I'm certainly glad that the option is there, but having the default be off would be a relief.

I did a search and didn't find a relevant post - if I missed one, apologies, and please point me there...

Link to comment
Share on other sites

Something like this:

// Module Manager patch to disable by default the RCS pitch/roll/yaw functions
@PART[*]:HAS[@MODULE[ModuleRCS]]:FINAL
{
	@MODULE[ModuleRCS]
	{
		%enableYaw=False
		%enablePitch=False
		%enableRoll=False
	}
}

Should do the trick. Careful though, this is indiscriminantly looking at all parts that have a ModuleRCS, could affect mod parts too. If you want it more controlled, edit the @PART line to be more specific for just the parts you want to edit.

Edited by swjr-swis
case is important, and never do MM patches with a headache
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...