Hi, all!
Why getNumSubMeshes is deprecated?
Code: Select all
/** Gets the number of sub meshes which comprise this mesh.
* @deprecated use getSubMeshes() instead
*/
size_t getNumSubMeshes(void) const {
return mSubMeshList.size();
}
Should I use getSubMeshes().size() instead?

