sandai-react
Version:
React components and utilities for the Sandai 3D AI Characters.
23 lines • 664 B
TypeScript
import { AnimationMetadataType } from "./AnimationMetadataType";
export declare const emotions: {
[key: string]: {
sentiment: number;
};
};
export interface EmotionAnimationMetadataType extends AnimationMetadataType {
metaType: "motion";
name: string;
url: string;
motion: string;
motionType: "Gesture" | "Loop";
motionSituation: "formal" | "informal";
onlyWhileTalking: boolean;
useAsFallback: boolean;
type: "bvh" | "fbx" | "vrma";
}
export declare const emotionAnimations: {
[emotion: string]: {
[intensity: number]: EmotionAnimationMetadataType[];
};
};
//# sourceMappingURL=emotions.d.ts.map