Use this command to delete existing physics shapes from the node. Without a physics shape a node is no longer a part of the physics simulation. It will not move or collide.
box = viz.add('box.wrl')
box.collideBox()
...
#Now make it act like a sphere
box.collideNone()
box.collideSphere()