├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── aframeenvironment.gif ├── assets.blend └── how_to_add_new_dressing_geometry.png ├── dist ├── aframe-environment-component.js └── aframe-environment-component.min.js ├── index.html ├── index.js ├── package.json ├── tests └── index.html └── tools ├── extrudeEditor.html └── latheEditor.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/README.md -------------------------------------------------------------------------------- /assets/aframeenvironment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/assets/aframeenvironment.gif -------------------------------------------------------------------------------- /assets/assets.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/assets/assets.blend -------------------------------------------------------------------------------- /assets/how_to_add_new_dressing_geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/assets/how_to_add_new_dressing_geometry.png -------------------------------------------------------------------------------- /dist/aframe-environment-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/dist/aframe-environment-component.js -------------------------------------------------------------------------------- /dist/aframe-environment-component.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/dist/aframe-environment-component.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/package.json -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/tests/index.html -------------------------------------------------------------------------------- /tools/extrudeEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/tools/extrudeEditor.html -------------------------------------------------------------------------------- /tools/latheEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-environment-component/HEAD/tools/latheEditor.html --------------------------------------------------------------------------------