Page 1 of 1

TrackIR in «MechWarrior Online»

Posted: Fri Nov 20, 2020 10:03 am
by John Smith
Hello. «MechWarrior Online» has TrackIR support. I don't have TrackIR hardware, so I would like to emulate it using «FreePie». This code was used for test:

Code: Select all

if starting:
    yaw = 0

yaw += 0.01
if yaw > 90:
    yaw = -90

trackIR.yaw = math.radians(yaw)

diagnostics.watch(trackIR.yaw)
However, nothing happens in the game. If I use «OpenTrack» head tracking is worked. However, I don't like the way «OpenTrack» implements the head rotation and therefore I would like to write my script in «FreePie». What's wrong?

Re: TrackIR in «MechWarrior Online»

Posted: Wed Dec 09, 2020 2:48 pm
by Jabberwock
Unfortunately, it is not very reliable. I am using it for American Truck Simulator and it sometimes works, sometimes it does not. I could not determine why...