Modifying mouse gains in default camera model

Is this possible? If I use the mouse to move (default camera) in a rather large scene, it will take forever to travel from one end of the scene to the other. I would like to modify the translational gains associated with the default camera model … that is … how fast the camera moves when one of the mouse buttons is pressed and the user drags the mouse cursor.

Thx,
Paul

I assume you’re referring to trackball mode. Try:

base.trackball.setForwardScale(100)

Or some appropriate value.

David

Yes, trackball mode. I get this …

AttributeError: 'libpanda.NodePath' object has no attribute 'setForwardScale'

Ideas?

Aha …

Change :

base.trackball.setForwardScale(100)

To:

base.trackball.node().setForwardScale(100)