Lua Virtual Reality Framework
#gamedev #framework #lua #c #engine #script

Bjorn 42825f08aa Merge pull request #881 from jmiskovic/remove/curve-2-point-render il y a 13 heures
.github 93d8368338 actions: fix appimagetool URL; il y a 6 jours
deps a72f5d72c1 Update LuaJIT; il y a 6 jours
etc 888ba1d53b Fix simulator reload while mouse button is down il y a 3 semaines
plugins 2a41a9098e Update plugins to use non-deprecated CMake versions; il y a 1 mois
src 67ea4af2ab Remove 2-point handling from Curve render il y a 13 heures
test 92cf2fb17d Validate input in CapsuleShape/CylinderShape setters; il y a 2 semaines
.gitignore cca24fe581 Tweak gitignore; il y a 4 ans
.gitmodules f3a5947013 rm pico openxr loader; il y a 10 mois
CHANGES.md 92cf2fb17d Validate input in CapsuleShape/CylinderShape setters; il y a 2 semaines
CMakeLists.txt 513f28cf4a Fix glslang build on Android; il y a 2 jours
LICENSE d634f1c34a Year; il y a 6 mois
README.md 0ab47ba8f1 Update README; il y a 5 mois
Tupfile.lua dec7421e3b WIP; il y a 1 mois

README.md

LÖVR

A simple Lua framework for rapidly building VR experiences.

You can use LÖVR to easily create VR experiences without much setup or programming experience. The framework is tiny, fast, open source, and supports lots of different platforms and devices.

Build Version Matrix Discord

Homepage | Documentation | FAQ

Features

  • Cross-Platform - Runs on Windows, macOS, Linux, and Android.
  • Cross-Device - Supports Vive/Index, Oculus Rift/Quest, Windows MR, and has a VR simulator.
  • Beginner-friendly - Simple VR scenes can be created in just a few lines of Lua.
  • Fast - Written in C11 and scripted with LuaJIT, includes optimized single-pass stereo rendering.
  • Asset Import - Supports 3D models (glTF, OBJ), skeletal animation, HDR textures, cubemaps, fonts, etc.
  • Spatialized Audio - Audio is automatically spatialized using HRTFs.
  • Vector Library - Efficient first-class support for 3D vectors, quaternions, and matrices.
  • 3D Rigid Body Physics - Including 7 collider shapes, triangle mesh colliders, and 6 joint types.
  • Compute Shaders - For high performance GPU tasks, like particles.

Getting Started

It's really easy to get started making things with LÖVR. Grab a copy of the executable from https://lovr.org/downloads, then write a main.lua script and drag it onto the executable. Here are some example projects to try:

Hello World

function lovr.draw(pass)
  pass:text('Hello World!', 0, 1.7, -3, .5)
end

Spinning Cube

function lovr.draw(pass)
  pass:cube(0, 1.7, -1, .5, lovr.timer.getTime())
end

Hand Tracking

function lovr.draw(pass)
  for _, hand in ipairs(lovr.headset.getHands()) do
    pass:sphere(vec3(lovr.headset.getPosition(hand)), .1)
  end
end

3D Models

function lovr.load()
  model = lovr.graphics.newModel('model.gltf')
end

function lovr.draw(pass)
  pass:draw(model, x, y, z)
end

More examples are on the docs page.

Building

You can build LÖVR from source using CMake. Here are the steps using the command line:

mkdir build
cd build
cmake ..
cmake --build .

See the Compiling Guide for more info.

Resources

  • Documentation: Guides, tutorials, examples, and API documentation.
  • FAQ: Frequently Asked Questions.
  • Matrix: The LÖVR community for discussion and support.
  • Nightly Builds: Nightly builds for Windows.
  • Compiling Guide: Information on compiling LÖVR from source.
  • Contributing: Guide for helping out with development 💜
  • LÖVE: LÖVR is heavily inspired by LÖVE, a 2D game framework.

Contributors

License

MIT, see LICENSE for details.