All good things come in threes 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
All good things come in threes 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. Or, you could call
base.graphicsEngine.renderFrame()
directly.