Package Exports
- @readyplayerme/visage
- @readyplayerme/visage/dist/index.cjs.js
- @readyplayerme/visage/dist/index.esm.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@readyplayerme/visage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Visage
A growing collection of react components for showcasing 3D on the web!
Built with three.js, react-three-fiber, drei, three-stdlib
Installation
npm install @readyplayerme/visageDocumentation
You can find all examples of components and their documentation on our GitHub page.
Usage
import React from 'react';
import ReactDOM from 'react-dom';
import { Exhibit } from '@readyplayerme/visage';
function App() {
return (
<Exhibit glbUrl="/model.glb" />
);
}
ReactDOM.render(<App />, document.querySelector('#app'));