@readyplayerme/visage
Version:
Easily display Ready Player Me avatars and 3D on the web.
12 lines (11 loc) • 374 B
TypeScript
import { FC } from 'react';
import { BaseModelProps } from 'src/types';
export interface RotatingModelProps extends BaseModelProps {
modelSrc: string | Blob;
scale?: number;
lockHorizontal?: boolean;
lockVertical?: boolean;
horizontalRotationStep?: number;
verticalRotationStep?: number;
}
export declare const RotatingModel: FC<RotatingModelProps>;