Clear _meshStates after warning, not before.

Fixes #257
This commit is contained in:
Dale Glass 2022-12-03 00:51:06 +01:00
parent 7e4d50d732
commit 81b2af88ae

View file

@ -304,10 +304,11 @@ bool Model::updateGeometry() {
// initJointStates() to fail to make _rig.jointStatesEmpty() false, causing things to end up here twice.
//
// In any case it appears to be safe to simply clear _meshStates here, even though this shouldn't happen.
_meshStates.clear();
qCWarning(renderutils) << "_meshStates has" << _meshStates.size() << "items when it should have none. Model with URL "
<< _url.toString() << "; translation" << _translation << "; rotation" << _rotation << "; scale" << _scale
<< "; joint state count" << _rig.getJointStateCount() << "; type" << (modelProviderType == NestableType::Avatar ? "Avatar" : "Entity");
_meshStates.clear();
}
const HFMModel& hfmModel = getHFMModel();