Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output warning message if a mesh with zero submeshes is created #391

Merged
merged 1 commit into from
Aug 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions ogre/src/OgreMeshFactory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,15 @@ bool OgreMeshFactory::LoadImpl(const MeshDescriptor &_desc)
return false;
}

if (ogreMesh->getNumSubMeshes() == 0u)
{
std::string msg = "Unable to load mesh: '" + _desc.meshName + "'";
if (!_desc.subMeshName.empty())
msg += ", submesh: '" + _desc.subMeshName + "'";
msg += ". Mesh will be empty.";
ignwarn << msg << std::endl;
}

return true;
}

Expand Down
9 changes: 9 additions & 0 deletions ogre2/src/Ogre2MeshFactory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,15 @@ bool Ogre2MeshFactory::LoadImpl(const MeshDescriptor &_desc)
return false;
}

if (ogreMesh->getNumSubMeshes() == 0u)
{
std::string msg = "Unable to load mesh: '" + _desc.meshName + "'";
if (!_desc.subMeshName.empty())
msg += ", submesh: '" + _desc.subMeshName + "'";
msg += ". Mesh will be empty.";
ignwarn << msg << std::endl;
}

return true;
}

Expand Down