odwdinc / Python-SimConnect

Python interface for MSFS2020 SimConnect.dll
GNU Affero General Public License v3.0
270 stars 107 forks source link

Unable to set some variables even though they are marked settable? #85

Closed vamshichittaluri closed 3 years ago

vamshichittaluri commented 3 years ago

Hello,

I was trying to set:

VELOCITY WORLD Z Speed relative to earth, in North/South direction Feet per second Y -
VELOCITY WORLD X Speed relative to earth, in East/West direction Feet per second Y -
VELOCITY WORLD Y Speed relative to earth, in vertical direction Feet per second Y -

but i am not able to, the sim continues to generate its own values? Any help on this?

presently sending the followign:

a_c.set("VELOCITY_WORLD_Z", NSVelMagnitude*mps2fps*NSVelFac)
a_c.set("VELOCITY_WORLD_X", EWVelMagnitude*mps2fps*EWVelFac)
a_c.set("VELOCITY_WORLD_Y", VVelMagnitude*mps2fps*VVelFac)

where NSVelMagnitude is the magnitude of in m/s followed by conversion factor and then direction +/- based on N/S, E/W or U/D Though, others work... i.e. I am able to set roll. pitch. etc.

Kind Regards Vamshi

vamshichittaluri commented 3 years ago

@odwdinc any idea? sorry to bug you.