├── .gitignore ├── LICENSE ├── README.md ├── dist ├── aframe-controller-cursor-component.js └── aframe-controller-cursor-component.min.js ├── docs ├── basic │ └── index.html ├── build.js ├── gaze-cursor-comparison │ └── index.html ├── index.html ├── main.js ├── properties │ └── index.html └── showcase │ └── index.html ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/README.md -------------------------------------------------------------------------------- /dist/aframe-controller-cursor-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/dist/aframe-controller-cursor-component.js -------------------------------------------------------------------------------- /dist/aframe-controller-cursor-component.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/dist/aframe-controller-cursor-component.min.js -------------------------------------------------------------------------------- /docs/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/basic/index.html -------------------------------------------------------------------------------- /docs/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/build.js -------------------------------------------------------------------------------- /docs/gaze-cursor-comparison/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/gaze-cursor-comparison/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/main.js -------------------------------------------------------------------------------- /docs/properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/properties/index.html -------------------------------------------------------------------------------- /docs/showcase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/docs/showcase/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/aframe-controller-cursor-component/HEAD/package.json --------------------------------------------------------------------------------