📃 master: update documentation
This commit is contained in:
parent
56a1f6cf12
commit
60ec868b75
5 changed files with 9 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## 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
BIN
xurfer.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 46 KiB |
|
|
@ -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
1
xurfer/init.lua
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
print("hello!")
|
||||||
|
|
@ -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")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue