From 116701036ac64c1657e0c16b14887233796092c0 Mon Sep 17 00:00:00 2001 From: bjorn Date: Mon, 31 Oct 2016 13:56:27 -0700 Subject: [PATCH] Update README; --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 716ceb06..bfc8110f 100644 --- a/README.md +++ b/README.md @@ -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 ---