Update README;

This commit is contained in:
bjorn 2016-10-31 13:56:27 -07:00
parent fb6c1c28ed
commit 116701036a
1 changed files with 14 additions and 0 deletions

View File

@ -25,6 +25,20 @@ end
Drag the `myGame` folder onto a shortcut to `lovr.exe`. You should see a spinning purple cube!
#### 3D Models
LÖVR supports most 3D model file formats:
```lua
function lovr.load()
model = lovr.graphics.newModel('teapot.fbx')
end
function lovr.draw()
model:draw()
end
```
Supported Hardware
---