├── .github └── workflows │ └── auto-publish.yml ├── .gitignore ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── ar-module-explainer.md ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── index.bs ├── package.json ├── security-privacy-questionnaire.md └── w3c.json /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | node_modules 4 | npm-debug*.log* 5 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/README.md -------------------------------------------------------------------------------- /ar-module-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/ar-module-explainer.md -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/favicon-96x96.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/index.bs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/package.json -------------------------------------------------------------------------------- /security-privacy-questionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/security-privacy-questionnaire.md -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr-ar-module/HEAD/w3c.json --------------------------------------------------------------------------------