mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 02:44:36 +02:00
Fix warnings
This commit is contained in:
parent
bb5c042f16
commit
31d099907a
1 changed files with 1 additions and 1 deletions
|
@ -1138,7 +1138,7 @@ void Rig::updateAnimations(float deltaTime, const glm::mat4& rootTransform, cons
|
|||
}
|
||||
}
|
||||
if (_sendNetworkNode) {
|
||||
for (int i = 0; i < _networkPoseSet._relativePoses.size(); i++) {
|
||||
for (auto i = 0; i < _networkPoseSet._relativePoses.size(); i++) {
|
||||
_networkPoseSet._relativePoses[i].blend(_internalPoseSet._relativePoses[i], (alpha > 1.0f ? 1.0f : alpha));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue