alvr-org / alvr-org/VRCFT-ALVR

Incorrect parameter mapping for htcHMD(ex.ViveFocusVision) facial expressions

未關閉
#7 3 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視
主要語言
C#
星號
4
分支
10
PR 合併指標
30 天內沒有已合併 PR

描述

The parameter mapping for htcHMD seems to be incorrect.

- MouthApeShape is intended to represent a jaw opening motion with closed lips.
- MouthUpperUpRight/Left and MouthLowerDownRight/Left are supposed to raise/lower the lips in a way that shows the teeth.

Please revise the parameter assignments accordingly.

---

ALVRModule > HtcFaceTracking.cs > SetLipHtcParams.cs

--->×
w[U.JawOpen] = p[JawOpen] + p[MouthApeShape];

w[MouthUpperUpRight] = p[MouthUpperRight] - p[MouthUpperOverturn];
w[MouthUpperUpLeft] = p[MouthUpperLeft] - p[MouthUpperOverturn];

w[MouthLowerDownLeft] = p[MouthLowerLeft] - p[MouthLowerOverturn];
w[MouthLowerDownRight] = p[MouthLowerRight] - p[MouthLowerOverturn];

--->○
w[U.JawOpen] = p[JawOpen];

w[MouthUpperUpRight] = p[MouthUpperUpright];
w[MouthUpperUpLeft] = p[MouthUpperUpleft];

w[MouthLowerDownLeft] = p[MouthLowerDownleft];
w[MouthLowerDownRight] = p[MouthLowerDownlRight];

---
After making these adjustments in VRChat, I confirmed that the avatar's mouth movements now behave correctly.

貢獻指南

這個儲存庫沒有索引到貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。