Implement this class to provide collision filtering. In other words, you can implement this class if you want finer control over contact creation.
Пример #1
0
 public ContactManager(World argPool)
 {
     ContactList = null;
     ContactCount = 0;
     ContactFilter = new ContactFilter();
     ContactListener = null;
     BroadPhase = new BroadPhase();
     pool = argPool;
 }