├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── core.js ├── index.js └── primitives.js ├── package.json └── src ├── core.js ├── index.js └── primitives.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | npm-debug.log 4 | *.sw[ponm] 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/README.md -------------------------------------------------------------------------------- /dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/dist/core.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/primitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/dist/primitives.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/package.json -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/src/core.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/src/index.js -------------------------------------------------------------------------------- /src/primitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnga/react-aframe/HEAD/src/primitives.js --------------------------------------------------------------------------------