NikolaiVChr / f16

General Dynamics F-16 for Flightgear flight simulator
GNU General Public License v2.0
123 stars 39 forks source link

Question: About isEnabled: func {} of APG68.nas #531

Closed unsanedingding closed 1 year ago

unsanedingding commented 1 year ago

I noticed getprop("/fdm/jsbsim/gear/unit[0]/WOW") in isEnabled func; in my test cast the prop always "1", so ,always failed this conditional test.(In isEnabled func, the prop must be seted "0").

Question: where is prop("/fdm/jsbsim/gear/unit[0]/WOW") be setted? Or, what error cause the prop value error?

Thanks NikolaiVChr.

SammySkycrafts commented 1 year ago

It is the Weight on Wheels sensor - So the radar is inhibited when on ground for safety. To have the value set to 0 then you need to remove the weight on the wheels (Takeoff)

unsanedingding commented 1 year ago

Thanks .