mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
typofix for void ColladaAppMesh::lockMesh(F32 t, const MatrixF& objOffset) which was preventing level load.
This commit is contained in:
parent
33fcc59543
commit
c84051fc60
1 changed files with 2 additions and 1 deletions
|
|
@ -922,7 +922,8 @@ void ColladaAppMesh::lockMesh(F32 t, const MatrixF& objOffset)
|
||||||
|
|
||||||
// Now get the vertex data at the specified time
|
// Now get the vertex data at the specified time
|
||||||
if (geometry->getElementType() == COLLADA_TYPE::GEOMETRY) {
|
if (geometry->getElementType() == COLLADA_TYPE::GEOMETRY) {
|
||||||
getPrimitives(daeSafeCast<domGeometry>(geometry));(daeSafeCast<domGeometry>(geometry), t, objOffset, mPoints, mNormals, mColors, mUVs, mUV2s, true);
|
getPrimitives(daeSafeCast<domGeometry>(geometry));
|
||||||
|
getVertexData(daeSafeCast<domGeometry>(geometry), t, objOffset, mPoints, mNormals, mColors, mUVs, mUV2s, true);
|
||||||
}
|
}
|
||||||
else if (geometry->getElementType() == COLLADA_TYPE::MORPH) {
|
else if (geometry->getElementType() == COLLADA_TYPE::MORPH) {
|
||||||
getMorphVertexData(daeSafeCast<domMorph>(geometry), t, objOffset, mPoints, mNormals, mColors, mUVs, mUV2s);
|
getMorphVertexData(daeSafeCast<domMorph>(geometry), t, objOffset, mPoints, mNormals, mColors, mUVs, mUV2s);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue