Panda PhysX

I just wanted to add that the Linux support from the last release actually works really well. I even got it running under 64-bit Arch using a 32-bit chroot. (instructions at http://projects.g33xnexus.com/rfi-damnation/wiki/Development/PhysX/)

So far, I’m really enjoying the PhysX support in Panda CVS. The only issue I’m running into right now is that I can’t get the debug visualization to work. I copied the following code from one of the examples, but it never shows up:

self.debugNP = render.attachNewNode(self.scene.getDebugGeomNode())
self.debugNP.node().on()
self.debugNP.node().visualizeWorldAxes(True)

The full source for the PhysX branch of our project is at http://projects.g33xnexus.com/rfi-damnation/source/physx/; the PhysX-specific stuff lives in Classes/world.py and Classes/EntityMixins/physical.py, if that helps diagnose the issue any.