Lua Virtual Reality Engine
Go to file
bjorn 3c3cc44136 Update README; 2016-08-09 23:42:30 -07:00
src Fix joystick free; 2016-08-09 23:34:40 -07:00
.gitignore Separate Lua API; 2016-08-09 23:28:17 -07:00
CMakeLists.txt Fix windows; 2016-07-15 22:54:11 -07:00
README.md Update README; 2016-08-09 23:42:30 -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 (3.2)
  • assimp
  • OSVR

Compiling

CMake:

mkdir build
cd build
cmake ..

tup (OSX only):

tup
./lovr