setting default camera position when mouse is ENABLED

I’d like to have a default position other than (0,0,0) and still use the default mouse controls (and/or .useDrive() ). How can I do this? I get that disableMouse disconnects a “camera reposition callback” from mouse movement events, but it seems like I should still be able to set a position, since mouse movement is relative.

I also tried disabling the mouse, setting camera position, and re-enabling the mouse, but the position just gets reset to zero again.

How can I set position while the mouse is enabled (and disableMouse() has not been called)? Thank you!

Try:

base.trackball.node().setPos(0, 20, 0)

David