Control camera outside of task loop

All good things come in threes :smiley: I am using panda3d outside of its main loop. After the call of taskMgr.step() the panda3d window stays open which is desired behavior. My question is whether there is a way to control the camera in that state?

Best

Yes, you should be able to move the camera. But of course, you won’t see the effects of moving the camera until you call taskMgr.step() to render another frame. :wink: Or, you could call base.graphicsEngine.renderFrame() directly.