├── .gitignore ├── README.md ├── aframe ├── README.md ├── index.html └── style.css ├── babylonJS ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── environmentSpecular.env │ ├── favicon.ico │ ├── hand.png │ └── speeder.glb ├── src │ ├── index.html │ ├── main.js │ ├── qr.js │ ├── style.css │ └── tracking-prompt.js └── vite.config.js ├── playcanvas └── README.md └── threejs ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── flowers.glb └── hand.png ├── src ├── index.html ├── main.js ├── qr.js └── style.css └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/README.md -------------------------------------------------------------------------------- /aframe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/aframe/README.md -------------------------------------------------------------------------------- /aframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/aframe/index.html -------------------------------------------------------------------------------- /aframe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/aframe/style.css -------------------------------------------------------------------------------- /babylonJS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/.gitignore -------------------------------------------------------------------------------- /babylonJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/README.md -------------------------------------------------------------------------------- /babylonJS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/package-lock.json -------------------------------------------------------------------------------- /babylonJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/package.json -------------------------------------------------------------------------------- /babylonJS/public/environmentSpecular.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/public/environmentSpecular.env -------------------------------------------------------------------------------- /babylonJS/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/public/favicon.ico -------------------------------------------------------------------------------- /babylonJS/public/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/public/hand.png -------------------------------------------------------------------------------- /babylonJS/public/speeder.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/public/speeder.glb -------------------------------------------------------------------------------- /babylonJS/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/src/index.html -------------------------------------------------------------------------------- /babylonJS/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/src/main.js -------------------------------------------------------------------------------- /babylonJS/src/qr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/src/qr.js -------------------------------------------------------------------------------- /babylonJS/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/src/style.css -------------------------------------------------------------------------------- /babylonJS/src/tracking-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/src/tracking-prompt.js -------------------------------------------------------------------------------- /babylonJS/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/babylonJS/vite.config.js -------------------------------------------------------------------------------- /playcanvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/playcanvas/README.md -------------------------------------------------------------------------------- /threejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/.gitignore -------------------------------------------------------------------------------- /threejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/README.md -------------------------------------------------------------------------------- /threejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/package-lock.json -------------------------------------------------------------------------------- /threejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/package.json -------------------------------------------------------------------------------- /threejs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/public/favicon.ico -------------------------------------------------------------------------------- /threejs/public/flowers.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/public/flowers.glb -------------------------------------------------------------------------------- /threejs/public/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/public/hand.png -------------------------------------------------------------------------------- /threejs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/src/index.html -------------------------------------------------------------------------------- /threejs/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/src/main.js -------------------------------------------------------------------------------- /threejs/src/qr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/src/qr.js -------------------------------------------------------------------------------- /threejs/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/src/style.css -------------------------------------------------------------------------------- /threejs/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Variant3d/launch-examples/HEAD/threejs/vite.config.js --------------------------------------------------------------------------------