mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 08:12:53 +02:00
Remove LipsUpperOpen and LipsLowerOpen, the last of the legacy faceshift blendshapes
These blendshapes are not present in ARKit and are not used by any of our procedural face animations (talking, blinking etc). This change should have been part of #16400 but was accidently left out.
This commit is contained in:
parent
0bfbe413eb
commit
101ec9d753
9 changed files with 3 additions and 18 deletions
|
@ -201,8 +201,6 @@
|
|||
{ "from": "Standard.LipsStretch_R", "to": "Actions.LipsStretch_R" },
|
||||
{ "from": "Standard.LipsUpperClose", "to": "Actions.LipsUpperClose" },
|
||||
{ "from": "Standard.LipsLowerClose", "to": "Actions.LipsLowerClose" },
|
||||
{ "from": "Standard.LipsUpperOpen", "to": "Actions.LipsUpperOpen" },
|
||||
{ "from": "Standard.LipsLowerOpen", "to": "Actions.LipsLowerOpen" },
|
||||
{ "from": "Standard.LipsFunnel", "to": "Actions.LipsFunnel" },
|
||||
{ "from": "Standard.LipsPucker", "to": "Actions.LipsPucker" },
|
||||
{ "from": "Standard.Puff", "to": "Actions.Puff" },
|
||||
|
|
|
@ -96,8 +96,6 @@
|
|||
{ "from": "Standard.LipsStretch_R", "to": "Actions.LipsStretch_R" },
|
||||
{ "from": "Standard.LipsUpperClose", "to": "Actions.LipsUpperClose" },
|
||||
{ "from": "Standard.LipsLowerClose", "to": "Actions.LipsLowerClose" },
|
||||
{ "from": "Standard.LipsUpperOpen", "to": "Actions.LipsUpperOpen" },
|
||||
{ "from": "Standard.LipsLowerOpen", "to": "Actions.LipsLowerOpen" },
|
||||
{ "from": "Standard.LipsFunnel", "to": "Actions.LipsFunnel" },
|
||||
{ "from": "Standard.LipsPucker", "to": "Actions.LipsPucker" },
|
||||
{ "from": "Standard.Puff", "to": "Actions.Puff" },
|
||||
|
|
|
@ -57,8 +57,6 @@ static controller::Action blendshapeActions[] = {
|
|||
controller::Action::LIPSSTRETCH_R,
|
||||
controller::Action::LIPSUPPERCLOSE,
|
||||
controller::Action::LIPSLOWERCLOSE,
|
||||
controller::Action::LIPSUPPEROPEN,
|
||||
controller::Action::LIPSLOWEROPEN,
|
||||
controller::Action::LIPSFUNNEL,
|
||||
controller::Action::LIPSPUCKER,
|
||||
controller::Action::PUFF,
|
||||
|
|
|
@ -386,8 +386,6 @@ namespace controller {
|
|||
makeAxisPair(Action::LIPSSTRETCH_R, "LipsStretch_R"),
|
||||
makeAxisPair(Action::LIPSUPPERCLOSE, "LipsUpperClose"),
|
||||
makeAxisPair(Action::LIPSLOWERCLOSE, "LipsLowerClose"),
|
||||
makeAxisPair(Action::LIPSUPPEROPEN, "LipsUpperOpen"),
|
||||
makeAxisPair(Action::LIPSLOWEROPEN, "LipsLowerOpen"),
|
||||
makeAxisPair(Action::LIPSFUNNEL, "LipsFunnel"),
|
||||
makeAxisPair(Action::LIPSPUCKER, "LipsPucker"),
|
||||
makeAxisPair(Action::PUFF, "Puff"),
|
||||
|
|
|
@ -220,8 +220,6 @@ enum class Action {
|
|||
LIPSSTRETCH_R,
|
||||
LIPSUPPERCLOSE,
|
||||
LIPSLOWERCLOSE,
|
||||
LIPSUPPEROPEN,
|
||||
LIPSLOWEROPEN,
|
||||
LIPSFUNNEL,
|
||||
LIPSPUCKER,
|
||||
PUFF,
|
||||
|
|
|
@ -392,8 +392,6 @@ Input::NamedVector StandardController::getAvailableInputs() const {
|
|||
makePair(LIPSSTRETCH_R, "LipsStretch_R"),
|
||||
makePair(LIPSUPPERCLOSE, "LipsUpperClose"),
|
||||
makePair(LIPSLOWERCLOSE, "LipsLowerClose"),
|
||||
makePair(LIPSUPPEROPEN, "LipsUpperOpen"),
|
||||
makePair(LIPSLOWEROPEN, "LipsLowerOpen"),
|
||||
makePair(LIPSFUNNEL, "LipsFunnel"),
|
||||
makePair(LIPSPUCKER, "LipsPucker"),
|
||||
makePair(PUFF, "Puff"),
|
||||
|
|
|
@ -127,8 +127,6 @@ namespace controller {
|
|||
LIPSSTRETCH_R,
|
||||
LIPSUPPERCLOSE,
|
||||
LIPSLOWERCLOSE,
|
||||
LIPSUPPEROPEN,
|
||||
LIPSLOWEROPEN,
|
||||
LIPSFUNNEL,
|
||||
LIPSPUCKER,
|
||||
PUFF,
|
||||
|
|
|
@ -47,8 +47,6 @@ const char* FACESHIFT_BLENDSHAPES[] = {
|
|||
"LipsStretch_R",
|
||||
"LipsUpperClose",
|
||||
"LipsLowerClose",
|
||||
"LipsUpperOpen",
|
||||
"LipsLowerOpen",
|
||||
"LipsFunnel",
|
||||
"LipsPucker",
|
||||
"Puff",
|
||||
|
|
|
@ -51,8 +51,6 @@ enum class Blendshapes : int {
|
|||
LipsStretch_R,
|
||||
LipsUpperClose,
|
||||
LipsLowerClose,
|
||||
LipsUpperOpen,
|
||||
LipsLowerOpen,
|
||||
LipsFunnel,
|
||||
LipsPucker,
|
||||
Puff,
|
||||
|
@ -114,5 +112,8 @@ enum class LegacyBlendshpaes : int {
|
|||
// * Sneer (split in ARKit)
|
||||
// * ChinLowerRaise (not in ARKit)
|
||||
// * ChinUpperRaise (not in ARKit)
|
||||
// * LipsUpperOpen (not in ARKit)
|
||||
// * LipsLowerOpen (not in ARKit)
|
||||
|
||||
|
||||
#endif // hifi_BlendshapeConstants_h
|
||||
|
|
Loading…
Reference in a new issue