📃 master: update documentation

This commit is contained in:
Leon van Kammen 2026-06-12 12:29:46 +02:00
parent 56a1f6cf12
commit 60ec868b75
5 changed files with 9 additions and 1 deletions

View file

@ -10,6 +10,8 @@ $ lovr xurfer <url> # if you have LÖVR installed
**Example**: lovr xurfer <a href="https://snips.sh/f/_U5-XctEVE?r=1">https://snips.sh/f/_U5-XctEVE?r=1</a> **Example**: lovr xurfer <a href="https://snips.sh/f/_U5-XctEVE?r=1">https://snips.sh/f/_U5-XctEVE?r=1</a>
![](xurfer.webp)
## Multiplatform Multimodal XR Browser ## Multiplatform Multimodal XR Browser
The aim of this project is providing **one [XR Hypermedia browser](https://xrhf.isvery.ninja) codebase** which gracefully degrades to handheld/embedded/braille devices: The aim of this project is providing **one [XR Hypermedia browser](https://xrhf.isvery.ninja) codebase** which gracefully degrades to handheld/embedded/braille devices:

BIN
xurfer.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View file

@ -1,7 +1,7 @@
-- sync lovr/love positional cli arguments -- sync lovr/love positional cli arguments
if arg[0] == nil and arg[1] ~= nil then arg[0] = arg[1] end if arg[0] == nil and arg[1] ~= nil then arg[0] = arg[1] end
local runtime = "" runtime = ""
if lovr ~= nil then runtime = "lovr" end if lovr ~= nil then runtime = "lovr" end
if love ~= nil then runtime = "love" end if love ~= nil then runtime = "love" end

1
xurfer/init.lua Normal file
View file

@ -0,0 +1 @@
print("hello!")

View file

@ -9,6 +9,11 @@
-- ./lovr xurfer https://snips.sh/f/rHFLg-cewi?r=1' -- cube -- ./lovr xurfer https://snips.sh/f/rHFLg-cewi?r=1' -- cube
-- ./lovr xurfer https://snips.sh/f/_U5-XctEVE?r=1' -- cube, monkey, scene -- ./lovr xurfer https://snips.sh/f/_U5-XctEVE?r=1' -- cube, monkey, scene
if runtime == nil then
package.path = package.path .. ';' .. 'xurfer/?.lua'
require('conf')
end
local util = require("util") local util = require("util")
local ecs = require("ecs") local ecs = require("ecs")