Better mouth shape descriptions
This commit is contained in:
parent
f7d4a70d3d
commit
db368b4311
|
@ -45,7 +45,7 @@ This shape is also used as an in-between when animating from {A} or {B} to {D}.
|
|||
| Wide open mouth. This mouth shapes is used for vowels like "`AA`" as in f**a**ther, "`AE`" as in b**a**t, and "`AY`" as in wh**y**.
|
||||
|
||||
| {E} | image:img/ken-E.png[]
|
||||
| Slightly rounded mouth. This mouth shape is used for vowels like "`AO`" as in **o**ff, "`UH`" as in sh**ou**ld, and "`OW`" as in sh**o**w.
|
||||
| Slightly rounded mouth. This mouth shape is used for vowels like "`AO`" as in **o**ff.
|
||||
|
||||
This shape is also used as an in-between when animating from {C} or {D} to {F}. Make sure the mouth isn't wider open than for {C}. Both {C}{E}{F} and {D}{E}{F} should result in smooth animation.
|
||||
|
||||
|
|
|
@ -6,15 +6,21 @@
|
|||
// For reference, see http://sunewatts.dk/lipsync/lipsync/article_02.php
|
||||
// For visual examples, see https://flic.kr/s/aHsj86KR4J. Their shapes "BMP".."L" map to A..H.
|
||||
enum class Shape {
|
||||
A, // Closed mouth (silence, M, B, P)
|
||||
B, // Clenched teeth (most vowels, m[e]n)
|
||||
C, // Mouth slightly open (b[ir]d, s[ay], w[i]n...)
|
||||
D, // Mouth wide open (b[u]t, m[y], sh[ou]ld...)
|
||||
E, // h[ow]
|
||||
F, // Pout ([o]ff, sh[ow])
|
||||
G, // F, V
|
||||
H, // L
|
||||
// Basic shapes
|
||||
|
||||
A, // Closed mouth (M, B, P)
|
||||
B, // Clenched teeth (most consonants, some vowels like EE as in b[ee])
|
||||
C, // Open mouth (vowels like m[e]n, s[u]n, s[a]y)
|
||||
D, // Mouth wide open (vowels like f[a]ther, b[a]t, wh[y])
|
||||
E, // Rounded mouth (vowels like [o]ff)
|
||||
F, // Puckered lips (y[ou], b[o]y, [w]ay)
|
||||
|
||||
// Extended shapes
|
||||
|
||||
G, // "F", "V"
|
||||
H, // "L"
|
||||
X, // Idle
|
||||
|
||||
EndSentinel
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue