Make hfm::Deformer more closely resemble original model data. Leave weight-based blendshape packing to preparations step.

This commit is contained in:
sabrina-shanman 2019-09-16 16:06:43 -07:00
parent 517bef63a9
commit ac06234c3d

View file

@ -296,8 +296,8 @@ public:
// Formerly contained in hfm::Mesh
class Deformer {
public:
std::vector<uint16_t> indices;
std::vector<uint16_t> weights;
std::vector<uint32_t> indices;
std::vector<float> weights;
};
class DynamicTransform {