The ARnft rendering engine, based on Three.js
npm install @webarkit/arnft-threejsgit clone https://github.com/webarkit/ARnft-threejs
html
`
or load with raw.githack:
`html
`
or you can install from npm:
`
npm install @webarkit/arnft-threejs
`
or yarn:
`
yarn add @webarkit/arnft-threejs
`
and use it as a module:
`javascript
import ARnftThreejs from '@webarkit/arnft-threejs'
`
Features
The library has ES6 and typescript support. Type definitions are in the types folder.
Build the docs
If you want to read the API doc run in the console:
`
yarn docs
`
and then access the generated html pages with a localhost server.
Build the project
If you make changes to the project to the source code , then you need to build it again:
`
yarn dev-ts // for a development build
yarn build-ts // for a production build
``