mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 08:34:40 +00:00
uninitialized variables-collision
This commit is contained in:
parent
1cea8ffacb
commit
e9415a0994
18 changed files with 62 additions and 20 deletions
|
|
@ -56,10 +56,10 @@ public:
|
|||
Vector<Edge> mEdgeList;
|
||||
Vector<Face> mFaceList;
|
||||
BaseMatInstance* material;
|
||||
SceneObject* object;
|
||||
SceneObject* mObject;
|
||||
|
||||
ConvexFeature()
|
||||
: mVertexList(64), mEdgeList(128), mFaceList(64), material( 0 )
|
||||
: mVertexList(64), mEdgeList(128), mFaceList(64), material( 0 ), mObject(NULL)
|
||||
{
|
||||
VECTOR_SET_ASSOCIATION(mVertexList);
|
||||
VECTOR_SET_ASSOCIATION(mEdgeList);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue