@readyplayerme/visage
Version:
Easily display Ready Player Me avatars and 3D on the web.
12 lines (11 loc) • 381 B
TypeScript
import { FC, Ref } from 'react';
import { Group } from 'three';
import { BaseModelProps } from 'src/types';
import { Emotion } from '../../Avatar/Avatar.component';
export interface StaticModelProps extends BaseModelProps {
modelSrc: string | Blob;
modelRef?: Ref<Group>;
scale?: number;
emotion?: Emotion;
}
export declare const StaticModel: FC<StaticModelProps>;