Skip to content

Commit

Permalink
Fix height offset; Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
oneup03 committed Jun 28, 2024
1 parent 78b1172 commit 341bfb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ Windows-only solution, but there are other solutions on Linux like MonadoVR.

## Notes

- This project is primarily targeted for VR mods of flatscreen games, not full VR games. As such, there is only headset pitch emulation and no VR controller emulation
- Configuring controller bindings in SteamVR settings may allow a few more games to be compatible
- Check the [Compatibility List](https://github.com/oneup03/VRto3D/wiki/Compatibility-List) to see if a game has been tested
- You will need a multi-display setup in extended mode
- The primary display will be where the "Headset" window is located
- The secondary display will need to have the game's main window in focus for control input from your mouse/keyboard/controller to work
Expand All @@ -63,9 +66,9 @@ Windows-only solution, but there are other solutions on Linux like MonadoVR.
- Use Windows shortcut keys to move windowed programs around `Win + Left/Right Keys`
- Use Windows shortcut keys to move fullscreen programs around `Shift + Win + Left/Right`
- SteamVR may still complain about Direct Display mode, but this can be safely ignored
- Exiting SteamVR will "restart" Steam - this is normal
- Overlays generally won't work on this virtual HMD
- Recommend using a XInput controller
- This project is primarily targeted for VR mods of flatscreen games, not full VR games. As such, there is only headset pitch emulation and no VR controller emulation
- OpenXR games/mods seem to be more likely to work and be stable than OpenVR ones
- Select the OpenXR toggle in UEVR GUI
- Delete openvr_api.dll for REFramework
Expand Down
2 changes: 1 addition & 1 deletion vrto3d/src/hmd_device_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ vr::EVRInitError MockControllerDeviceDriver::Activate( uint32_t unObjectId )
"yaw" : 0.0
},
"standing" : {
"translation" : [ 0.0, 0.0, 0.0 ],
"translation" : [ 0.0, 1.0, 0.0 ],
"yaw" : 0.0
},
"time" : ")" << std::put_time(&tm, "%a %b %d %H:%M:%S %Y") << R"(",
Expand Down

0 comments on commit 341bfb5

Please sign in to comment.