(self, settings, path: str)
| 31 | base_url = "http://127.0.0.1:42943" |
| 32 | lockfile = None |
| 33 | def __init__(self, settings, path: str): |
| 34 | super().__init__(settings, path) |
| 35 | self._wait_js = threading.Event() |
| 36 | self._motions_raw = [] |
| 37 | self._expressions_raw = [] |
| 38 | self.webview_path = os.path.join(path, "avatars", "live2d", "web") |
| 39 | self.puppet_path = os.path.join(path, "avatars", "live2d", "DesktopPuppet") |
| 40 | self.models_dir = os.path.join(self.webview_path, "models") |
| 41 | self._puppet_process = None |
| 42 | |
| 43 | def get_available_models(self): |
| 44 | file_list = [] |
nothing calls this directly
no outgoing calls
no test coverage detected