mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 01:16:35 +02:00
removing a warning about hidden virtual override
This commit is contained in:
parent
01c42c741c
commit
403ad5e984
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ FaceModel::FaceModel(Head* owningHead) :
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void FaceModel::simulate(float deltaTime) {
|
void FaceModel::simulate(float deltaTime, bool fullUpdate) {
|
||||||
updateGeometry();
|
updateGeometry();
|
||||||
Avatar* owningAvatar = static_cast<Avatar*>(_owningHead->_owningAvatar);
|
Avatar* owningAvatar = static_cast<Avatar*>(_owningHead->_owningAvatar);
|
||||||
glm::vec3 neckPosition;
|
glm::vec3 neckPosition;
|
||||||
|
|
|
@ -21,7 +21,7 @@ public:
|
||||||
|
|
||||||
FaceModel(Head* owningHead);
|
FaceModel(Head* owningHead);
|
||||||
|
|
||||||
void simulate(float deltaTime);
|
virtual void simulate(float deltaTime, bool fullUpdate = true);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue