Merge pull request #16203 from sabrina-shanman/instancing_shape

Make hfm::Deformer more closely resemble original model data
This commit is contained in:
Sabrina Shanman 2019-09-16 16:38:29 -07:00 committed by GitHub
commit 468d9f093d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {