Homepage Forums Head (only head) tracking Flip front/back and left/right movement freetrack

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1653
    CurboSSCurboSS
    Participant

    I feel stupid, but I can’t figure out how flip front/back and left/right movement. That is, moving right physically makes me move forward in VR, moving forward physically makes me move right in VR. Using PSMove service and Freepie bridge as seen in Daley tech’s video. OSVR hdk2, 3x PS eye in triangle, going mostly for standing/sitting for racing games. My movement is normal and accurate in the PSMoveservice config tool, positional moves as expected.

    • This topic was modified 6 years, 3 months ago by CurboSSCurboSS.
    #1660
    Bla BlablaGreg Driver
    Keymaster

    hi.
    OK. I need make update to provide one option in settings. Sorry for inconvenience.

    Greg

    #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 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.