├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist └── aframe-exokit-avatars.min.js ├── examples ├── dan.glb └── index.html ├── index.js ├── package.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/README.md -------------------------------------------------------------------------------- /dist/aframe-exokit-avatars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/dist/aframe-exokit-avatars.min.js -------------------------------------------------------------------------------- /examples/dan.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/examples/dan.glb -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/examples/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/package.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/aframe-exokit-avatars/HEAD/vite.config.js --------------------------------------------------------------------------------