fix bounding volume bug when flattening collisionSolids

This commit is contained in:
David Rose 2001-06-15 00:31:08 +00:00
parent ca02c2c287
commit 133c8ebf6b
1 changed files with 1 additions and 0 deletions

View File

@ -150,6 +150,7 @@ combine_with(Node *other) {
const PT(CollisionSolid) *solids_begin = &cother->_solids[0];
const PT(CollisionSolid) *solids_end = solids_begin + cother->_solids.size();
_solids.insert(_solids.end(), solids_begin, solids_end);
mark_bound_stale();
return this;
}
}