Files
SillyTavern-extras/talkinghead/tha3/mocap/ifacialmocap_pose_converter.py
2023-08-11 06:50:59 +09:00

12 lines
296 B
Python

from abc import ABC, abstractmethod
from typing import Dict, List
class IFacialMocapPoseConverter(ABC):
@abstractmethod
def convert(self, ifacialmocap_pose: Dict[str, float]) -> List[float]:
pass
@abstractmethod
def init_pose_converter_panel(self, parent):
pass