mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 03:04:33 +02:00
Remove extra semicolon in avatar.cpp
This commit is contained in:
parent
dd2655825a
commit
d01f694d49
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ glm::vec3 Avatar::getUprightHeadPosition() const {
|
|||
glm::vec3 Avatar::getUprightEyeLevelPosition() const {
|
||||
const float EYE_UP_OFFSET = 0.36f;
|
||||
glm::vec3 up = getWorldAlignedOrientation() * IDENTITY_UP;
|
||||
return _position + up * _scale * BODY_BALL_RADIUS_HEAD_BASE * EYE_UP_OFFSET + glm::vec3(0.0f, _pelvisToHeadLength, 0.0f);;
|
||||
return _position + up * _scale * BODY_BALL_RADIUS_HEAD_BASE * EYE_UP_OFFSET + glm::vec3(0.0f, _pelvisToHeadLength, 0.0f);
|
||||
}
|
||||
|
||||
void Avatar::updateThrust(float deltaTime, Transmitter * transmitter) {
|
||||
|
|
Loading…
Reference in a new issue