├── LICENSE ├── README.md ├── dist ├── aframe-speech-command-component.js └── aframe-speech-command-component.min.js ├── examples ├── build.js ├── components │ ├── set-image.js │ ├── teleporter.js │ └── update-raycaster.js ├── image-gallery.html ├── images │ ├── chrome_microphone_access_request.png │ ├── chrome_microphone_status.png │ ├── city.jpg │ ├── cubes.jpg │ ├── sechelt.jpg │ ├── show_hide_menu.png │ ├── thumb-city.jpg │ ├── thumb-cubes.jpg │ └── thumb-sechelt.jpg ├── index.html ├── main.js ├── teleport.html └── text.js ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/README.md -------------------------------------------------------------------------------- /dist/aframe-speech-command-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/dist/aframe-speech-command-component.js -------------------------------------------------------------------------------- /dist/aframe-speech-command-component.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/dist/aframe-speech-command-component.min.js -------------------------------------------------------------------------------- /examples/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/build.js -------------------------------------------------------------------------------- /examples/components/set-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/components/set-image.js -------------------------------------------------------------------------------- /examples/components/teleporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/components/teleporter.js -------------------------------------------------------------------------------- /examples/components/update-raycaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/components/update-raycaster.js -------------------------------------------------------------------------------- /examples/image-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/image-gallery.html -------------------------------------------------------------------------------- /examples/images/chrome_microphone_access_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/chrome_microphone_access_request.png -------------------------------------------------------------------------------- /examples/images/chrome_microphone_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/chrome_microphone_status.png -------------------------------------------------------------------------------- /examples/images/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/city.jpg -------------------------------------------------------------------------------- /examples/images/cubes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/cubes.jpg -------------------------------------------------------------------------------- /examples/images/sechelt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/sechelt.jpg -------------------------------------------------------------------------------- /examples/images/show_hide_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/show_hide_menu.png -------------------------------------------------------------------------------- /examples/images/thumb-city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/thumb-city.jpg -------------------------------------------------------------------------------- /examples/images/thumb-cubes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/thumb-cubes.jpg -------------------------------------------------------------------------------- /examples/images/thumb-sechelt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/images/thumb-sechelt.jpg -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/main.js: -------------------------------------------------------------------------------- 1 | require('../index.js'); 2 | -------------------------------------------------------------------------------- /examples/teleport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/teleport.html -------------------------------------------------------------------------------- /examples/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/examples/text.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmalave/aframe-speech-command-component/HEAD/package.json --------------------------------------------------------------------------------