mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 19:34:22 +02:00
Move ExtractedMesh out of HFM
This commit is contained in:
parent
5c991ec87d
commit
bac22c69c1
2 changed files with 8 additions and 10 deletions
|
@ -100,7 +100,14 @@ public:
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
class ExtractedMesh;
|
class ExtractedMesh {
|
||||||
|
public:
|
||||||
|
hfm::Mesh mesh;
|
||||||
|
QMultiHash<int, int> newIndices;
|
||||||
|
QVector<QHash<int, int> > blendshapeIndexMaps;
|
||||||
|
QVector<QPair<int, int> > partMaterialTextures;
|
||||||
|
QHash<QString, size_t> texcoordSetMap;
|
||||||
|
};
|
||||||
|
|
||||||
class FBXSerializer : public HFMSerializer {
|
class FBXSerializer : public HFMSerializer {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -381,15 +381,6 @@ public:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class ExtractedMesh {
|
|
||||||
public:
|
|
||||||
hfm::Mesh mesh;
|
|
||||||
QMultiHash<int, int> newIndices;
|
|
||||||
QVector<QHash<int, int> > blendshapeIndexMaps;
|
|
||||||
QVector<QPair<int, int> > partMaterialTextures;
|
|
||||||
QHash<QString, size_t> texcoordSetMap;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef hfm::Blendshape HFMBlendshape;
|
typedef hfm::Blendshape HFMBlendshape;
|
||||||
typedef hfm::JointShapeInfo HFMJointShapeInfo;
|
typedef hfm::JointShapeInfo HFMJointShapeInfo;
|
||||||
typedef hfm::Joint HFMJoint;
|
typedef hfm::Joint HFMJoint;
|
||||||
|
|
Loading…
Reference in a new issue