mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 09:49:04 +00:00
Handle head orientation in ryzom client, ref #43
This commit is contained in:
parent
a0140fd551
commit
3f1a2fe6bd
1 changed files with 9 additions and 1 deletions
|
@ -1384,7 +1384,15 @@ bool mainLoop()
|
|||
MainCam.setRotQuat(View.currentViewQuat());
|
||||
if (StereoHMD)
|
||||
{
|
||||
// ...
|
||||
NLMISC::CQuat hmdOrient = StereoHMD->getOrientation();
|
||||
NLMISC::CMatrix camMatrix = MainCam.getMatrix();
|
||||
NLMISC::CMatrix hmdMatrix;
|
||||
hmdMatrix.setRot(hmdOrient);
|
||||
NLMISC::CMatrix posMatrix; // minimal head modeling, will be changed in the future
|
||||
posMatrix.translate(StereoHMD->getEyePosition());
|
||||
NLMISC::CMatrix mat = ((camMatrix * hmdMatrix) * posMatrix);
|
||||
MainCam.setPos(mat.getPos());
|
||||
MainCam.setRotQuat(mat.getRot());
|
||||
}
|
||||
if (StereoDisplay)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue