Update README;

This commit is contained in:
bjorn 2016-08-09 23:42:30 -07:00
parent 5b9b007f18
commit 3c3cc44136
1 changed files with 12 additions and 3 deletions

View File

@ -10,7 +10,7 @@ In a directory called `myGame`, create a file called `main.lua`:
```lua
function lovr.update(dt)
print(lovr.headset:getPosition())
print(lovr.headset.getPosition())
end
```
@ -25,15 +25,24 @@ Dependencies
---
- LuaJIT
- GLFW (3.2) and OpenGL 4
- GLFW (3.2) and OpenGL (3.2)
- assimp
- OSVR
Compiling (CMake)
Compiling
---
CMake:
```sh
mkdir build
cd build
cmake ..
```
tup (OSX only):
```sh
tup
./lovr
```