Does Panda 3D allow for disabling default controls?

Does Panda 3D allow for disabling default controls? And how do I add my own controls. For example, if I want to disable the mouse and use J to move my character left and k to use move my character left, etc.

Thanks

Use the disableMouse() method of ShowBase to disable the default controls: panda3d.org/manual/index.php/Mouse_Support

To add your own controls, you need to setup events that fire on key presses: panda3d.org/manual/index.ph … rd_Support

There are various sample programs that use custom controls, such as Bump Mapping (which has a free-look camera) and Roaming Ralph (which has a camera that follows a character).