Metatell AI Bot - v0.0.10
    Preparing search index...

    Interface IAnimationService

    Service interface for managing VRM animations

    interface IAnimationService {
        clearCache(): void;
        getAvailableAnimations(avatarId: string): Promise<VRMAnimation[]>;
        getDefaultAnimations(): VRMAnimation[];
        loadAnimation(animationId: string): Promise<VRMAnimation>;
        setCurrentAvatarId(avatarId: string): void;
        validateAnimation(animationId: string): Promise<boolean>;
    }
    Index

    Methods