lovr/README.md

521 B

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 ..