First Commit

This commit is contained in:
2026-04-08 11:47:23 +02:00
committed by GitHub
parent 67b5d118c2
commit 96d567eb9e
11 changed files with 1050 additions and 0 deletions

18
utilities/constants.py Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
MMD_VISEME_COUNT = 5
MMD_SEP_1 = '---MMD Visemes---'
MMD_SEP_2 = '^MMD Visemes / Other v'
MMD_CANDIDATES = {
'a': ['', 'a', 'A', 'mouth_a', 'Mouth_A', 'あ口', 'v_a'],
'o': ['', 'o', 'O', 'mouth_o', 'Mouth_O', 'お口', 'v_o'],
'ch': ['', 'ch', 'CH', 'mouth_i', 'Mouth_I', 'い口', 'v_ch', 'i', 'I'],
'blink': [
'まばたき', '目閉じ', '眼閉じ', 'ウィンク2',
'Blink', 'blink', 'blink_all',
'eye_blink', 'Eye_Blink', 'eyes_blink', 'Eyes_Blink',
'eye_close', 'Eye_Close', 'eyes_close', 'Eyes_Close',
],
}