This commit is contained in:
Irlan 2018-07-16 09:48:01 -03:00
parent ea406eba44
commit 99117d30b7
2 changed files with 1 additions and 2 deletions

View File

@ -156,7 +156,7 @@ private:
// Mesh density // Mesh density
float32 m_density; float32 m_density;
// Particle pool // Pool of particles
b3BlockPool m_particleBlocks; b3BlockPool m_particleBlocks;
// List of particles // List of particles

View File

@ -160,7 +160,6 @@ b3Cloth::b3Cloth(const b3ClothDef& def, b3World* world) : m_particleBlocks(sizeo
m_world = world; m_world = world;
m_mesh = def.mesh; m_mesh = def.mesh;
m_density = def.density; m_density = def.density;
m_xf.SetIdentity();
b3ClothMesh* m = m_mesh; b3ClothMesh* m = m_mesh;