Better mouth shape descriptions

This commit is contained in:
Daniel Wolf 2016-11-26 21:04:30 +01:00
parent f7d4a70d3d
commit db368b4311
2 changed files with 15 additions and 9 deletions

View File

@ -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**. | 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[] | {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. 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.

View File

@ -6,15 +6,21 @@
// For reference, see http://sunewatts.dk/lipsync/lipsync/article_02.php // 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. // For visual examples, see https://flic.kr/s/aHsj86KR4J. Their shapes "BMP".."L" map to A..H.
enum class Shape { enum class Shape {
A, // Closed mouth (silence, M, B, P) // Basic shapes
B, // Clenched teeth (most vowels, m[e]n)
C, // Mouth slightly open (b[ir]d, s[ay], w[i]n...) A, // Closed mouth (M, B, P)
D, // Mouth wide open (b[u]t, m[y], sh[ou]ld...) B, // Clenched teeth (most consonants, some vowels like EE as in b[ee])
E, // h[ow] C, // Open mouth (vowels like m[e]n, s[u]n, s[a]y)
F, // Pout ([o]ff, sh[ow]) D, // Mouth wide open (vowels like f[a]ther, b[a]t, wh[y])
G, // F, V E, // Rounded mouth (vowels like [o]ff)
H, // L F, // Puckered lips (y[ou], b[o]y, [w]ay)
// Extended shapes
G, // "F", "V"
H, // "L"
X, // Idle X, // Idle
EndSentinel EndSentinel
}; };