Lua Virtual Reality Engine
Go to file
bjorn beacc9d287 Improve memory management; 2016-08-08 13:23:40 -07:00
src Improve memory management; 2016-08-08 13:23:40 -07:00
.gitignore Update .gitignore; 2016-07-31 17:21:39 -07:00
CMakeLists.txt Fix windows; 2016-07-15 22:54:11 -07:00
README.md joystick.added; joystick.removed; 2016-08-08 12:07:01 -07:00

README.md

LÖVR

LÖVR is a framework for making VR games with Lua! Inspired heavily by LÖVE. Still under heavy development.

Example

In a directory called myGame, create a file called main.lua:

function lovr.update(dt)
  print(lovr.headset:getPosition())
end

Then, start the OSVR server and run your game:

$ cd path/to/myGame
$ lovr .

Dependencies

  • LuaJIT
  • GLFW (3.2) and OpenGL 4
  • assimp
  • OSVR

Compiling (CMake)

mkdir build
cd build
cmake ..