├── CNAME ├── README.md ├── index.html ├── marker.png ├── screenshot.png └── static ├── gltf ├── scene.bin ├── scene.gltf └── textures │ ├── EXODIA_diffuse.jpg │ ├── EXODIA_normal.jpg │ ├── EXODIA_occlusion.jpg │ └── EXODIA_specularGlossiness.png ├── js ├── aframe-ar.js ├── aframe-extras.min.js └── aframe.min.js └── marker └── pattern-marker.patt /CNAME: -------------------------------------------------------------------------------- 1 | www.ropy.site -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/index.html -------------------------------------------------------------------------------- /marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/marker.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/screenshot.png -------------------------------------------------------------------------------- /static/gltf/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/gltf/scene.bin -------------------------------------------------------------------------------- /static/gltf/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/gltf/scene.gltf -------------------------------------------------------------------------------- /static/gltf/textures/EXODIA_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/gltf/textures/EXODIA_diffuse.jpg -------------------------------------------------------------------------------- /static/gltf/textures/EXODIA_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/gltf/textures/EXODIA_normal.jpg -------------------------------------------------------------------------------- /static/gltf/textures/EXODIA_occlusion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/gltf/textures/EXODIA_occlusion.jpg -------------------------------------------------------------------------------- /static/gltf/textures/EXODIA_specularGlossiness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/gltf/textures/EXODIA_specularGlossiness.png -------------------------------------------------------------------------------- /static/js/aframe-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/js/aframe-ar.js -------------------------------------------------------------------------------- /static/js/aframe-extras.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/js/aframe-extras.min.js -------------------------------------------------------------------------------- /static/js/aframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/js/aframe.min.js -------------------------------------------------------------------------------- /static/marker/pattern-marker.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ns2250225/ar-ygo/HEAD/static/marker/pattern-marker.patt --------------------------------------------------------------------------------