You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting surface retrograde/prograde values with Smart ASS only updates yaw values in game
Code snippet to reproduce
importkrpcconn=krpc.connect(name="plz work")
smart_ass=conn.mech_jeb.smart_asssmart_ass.autopilot_mode=smart_ass.autopilot_mode.surface_retrograde# or progradesmart_ass.surface_vel_yaw=45smart_ass.force_roll=Truesmart_ass.surface_vel_roll=45smart_ass.surface_vel_pitch=45smart_ass.update(False)
print(smart_ass.surface_vel_yaw, smart_ass.surface_vel_roll, smart_ass.surface_vel_pitch)
Expected behavior
Autopilot switches to surface retrograde mode with roll, pitch, and yaw set to 45 degrees.
Actual behavior
Only yaw is set. The print statement outputs 45.0 45.0 45.0 so the values are changed (nothing is resetting them), so presumably they're just not being sent to mechjeb.
Version details
If it's important, the game has Realism Overhaul installed and I'm on Ubuntu 19.10
kRPC.MechJeb: v0.5.1
Kerbal Space Program: 1.8.1
kRPC: 0.4.8
MechJeb2: 2.9.2.0
The text was updated successfully, but these errors were encountered:
Thank you for reporting the issue. Currently, surface_vel_roll and surface_vel_pitch behave the same as surface_roll and surface_pitch (but they shouldn't). I will release a fix tomorrow.
Setting surface retrograde/prograde values with Smart ASS only updates yaw values in game
Code snippet to reproduce
Expected behavior
Autopilot switches to surface retrograde mode with roll, pitch, and yaw set to 45 degrees.
Actual behavior
Only yaw is set. The print statement outputs
45.0 45.0 45.0
so the values are changed (nothing is resetting them), so presumably they're just not being sent to mechjeb.Version details
If it's important, the game has Realism Overhaul installed and I'm on Ubuntu 19.10
kRPC.MechJeb: v0.5.1
Kerbal Space Program: 1.8.1
kRPC: 0.4.8
MechJeb2: 2.9.2.0
The text was updated successfully, but these errors were encountered: