mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 20:03:06 +02:00
Fixed missing semi colon
This commit is contained in:
parent
65b49a958f
commit
5506520226
1 changed files with 1 additions and 1 deletions
|
@ -910,7 +910,7 @@ void ModelEntityRenderer::animate(const TypedEntityPointer& entity) {
|
||||||
|
|
||||||
const QVector<FBXAnimationFrame>& frames = _animation->getFramesReference(); // NOTE: getFrames() is too heavy
|
const QVector<FBXAnimationFrame>& frames = _animation->getFramesReference(); // NOTE: getFrames() is too heavy
|
||||||
auto& fbxJoints = _animation->getGeometry().joints;
|
auto& fbxJoints = _animation->getGeometry().joints;
|
||||||
auto& originalFbxJoints = _model->getFBXGeometry().joints
|
auto& originalFbxJoints = _model->getFBXGeometry().joints;
|
||||||
bool allowTranslation = entity->getAnimationAllowTranslation();
|
bool allowTranslation = entity->getAnimationAllowTranslation();
|
||||||
int frameCount = frames.size();
|
int frameCount = frames.size();
|
||||||
if (frameCount <= 0) {
|
if (frameCount <= 0) {
|
||||||
|
|
Loading…
Reference in a new issue