RawSurface.skinRigid not used.

This commit is contained in:
Par Winzell 2017-10-27 15:29:09 -07:00
parent 6137694595
commit 1829f6d6a6
2 changed files with 0 additions and 2 deletions

View File

@ -196,7 +196,6 @@ int RawModel::AddSurface(const char *name, const char *nodeName)
surface.nodeName = nodeName; surface.nodeName = nodeName;
surface.bounds.Clear(); surface.bounds.Clear();
surface.discrete = false; surface.discrete = false;
surface.skinRigid = false;
surfaces.emplace_back(surface); surfaces.emplace_back(surface);
return (int) (surfaces.size() - 1); return (int) (surfaces.size() - 1);

View File

@ -167,7 +167,6 @@ struct RawSurface
std::vector<Vec3f> jointGeometryMaxs; std::vector<Vec3f> jointGeometryMaxs;
std::vector<Mat4f> inverseBindMatrices; std::vector<Mat4f> inverseBindMatrices;
bool discrete; bool discrete;
bool skinRigid;
}; };
struct RawChannel struct RawChannel