Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Flip front/back and left/right movement freetrack #1682
    CurboSSCurboSS
    Participant

    I did fix this by changing the freepie script, was too tired last night to notice this was the correct change.

    def update():
    freeTrack.pitch = -freePieIO[0].pitch
    freeTrack.roll = freePieIO[0].roll
    freeTrack.yaw = freePieIO[0].yaw

    #Multiply by 10 for SteamVR use
    freeTrack.x = (freePieIO[0].z * -10)
    freeTrack.y = (freePieIO[0].y * 10)
    freeTrack.z = (freePieIO[0].x * 10)

    if starting:
    freePieIO[0].update += update

    • This reply was modified 6 years, 3 months ago by CurboSSCurboSS.
Viewing 1 post (of 1 total)