UNPKG

@readyplayerme/visage

Version:

Easily display Ready Player Me avatars and 3D on the web.

13 lines (12 loc) 403 B
import { FC } from 'react'; import { BaseModelProps } from 'src/types'; import { Emotion } from '../../Avatar/Avatar.component'; export interface HalfBodyModelProps extends BaseModelProps { modelSrc: string | Blob; rotation?: number; scale?: number; idleRotation?: boolean; emotion?: Emotion; headMovement?: boolean; } export declare const HalfBodyModel: FC<HalfBodyModelProps>;