├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── examples ├── 00_simple │ └── index.html └── aframe.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | .idea -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/aframe-canvas/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/aframe-canvas/HEAD/README.md -------------------------------------------------------------------------------- /examples/00_simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/aframe-canvas/HEAD/examples/00_simple/index.html -------------------------------------------------------------------------------- /examples/aframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/aframe-canvas/HEAD/examples/aframe.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/aframe-canvas/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/aframe-canvas/HEAD/package.json --------------------------------------------------------------------------------