Added support for SHORT/WORD indices

Removed references to m_userPointer (in CollisionObject), called it m_userObjectPointer
increased view distance in glut demo file
This commit is contained in:
ejcoumans
2006-09-06 22:21:12 +00:00
parent 400376289c
commit fa4fd1369c
4 changed files with 58 additions and 52 deletions

View File

@@ -60,7 +60,11 @@ struct CollisionObject
BroadphaseProxy* m_broadphaseHandle;
CollisionShape* m_collisionShape;
void* m_userPointer;//not use by Bullet internally
//users can point to their objects, m_userPointer is not used by Bullet
void* m_userObjectPointer;
//m_internalOwner one is used by optional Bullet high level interface
void* m_internalOwner;
///time of impact calculation
float m_hitFraction;