├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── .gitkeep ├── aframe-mouse-cursor-component.js └── aframe-mouse-cursor-component.min.js ├── examples ├── basic │ └── index.html ├── common.css ├── embedded │ └── index.html ├── example.gif ├── index.html └── main.js ├── index.js ├── package.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2015"] } 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | `npm run dist` to generate browser files. 2 | -------------------------------------------------------------------------------- /dist/aframe-mouse-cursor-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/dist/aframe-mouse-cursor-component.js -------------------------------------------------------------------------------- /dist/aframe-mouse-cursor-component.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/dist/aframe-mouse-cursor-component.min.js -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/examples/basic/index.html -------------------------------------------------------------------------------- /examples/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/examples/common.css -------------------------------------------------------------------------------- /examples/embedded/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/examples/embedded/index.html -------------------------------------------------------------------------------- /examples/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/examples/example.gif -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/examples/main.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayognaise/aframe-mouse-cursor-component/HEAD/webpack.config.js --------------------------------------------------------------------------------