KSP-KOS / KOS

Fully programmable autopilot mod for KSP. Originally By Nivekk
Other
697 stars 230 forks source link

[Feature Request] Add Fairings to Stock Action Groups #2625

Open boiler1 opened 5 years ago

boiler1 commented 5 years ago

It would be nice to deploy fairings with a simple command instead of having to tie them to an action Group.

fairing on.

nuggreat commented 5 years ago

You can deploy fairings using a simple command that doesn't require you to tie the fairing into an action group by using the module systems kOS exposes.

The code to do said deploy is this FOR f IN SHIP:MODULESNAMED(ModuleProceduralFairing") { f:DOEVENT("deploy"). }

JonnyOThan commented 5 years ago

The same is true for a lot of the pseudo groups that already exist (legs, lights, solar panels, radiators, etc etc) but they still make the language nice to use. Another one that I often miss is “antennas”.

nuggreat commented 5 years ago

None of the other pseudo groups are a one time trigger thing for fairings if they where to be added I would prefer to see a stage like call as apposed to an action group like call.

boiler1 commented 5 years ago

Fairings can already be staged so that is a non-issue.

boiler1 commented 5 years ago

I am not opposed to "fairing release" instead of "fairing on" or "fairing activate". I just want to be able to write my script to specifically trigger the fairing.