mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +02:00
Fixes body not rotating for other avatars
This commit is contained in:
parent
fead12acca
commit
b922b028e9
1 changed files with 6 additions and 3 deletions
|
@ -338,9 +338,12 @@ int AvatarData::parseDataAtOffset(const QByteArray& packet, int offset) {
|
||||||
}
|
}
|
||||||
return maxAvailableSize;
|
return maxAvailableSize;
|
||||||
}
|
}
|
||||||
_bodyYaw = yaw;
|
if (_bodyYaw != yaw || _bodyPitch != pitch || _bodyRoll != roll) {
|
||||||
_bodyPitch = pitch;
|
_hasNewJointRotations = true;
|
||||||
_bodyRoll = roll;
|
_bodyYaw = yaw;
|
||||||
|
_bodyPitch = pitch;
|
||||||
|
_bodyRoll = roll;
|
||||||
|
}
|
||||||
|
|
||||||
// scale
|
// scale
|
||||||
float scale;
|
float scale;
|
||||||
|
|
Loading…
Reference in a new issue