Panda 191 limited clock mode doesnt work

problem:

with this code: loadPrcFileData(’’,‘clock-mode limited’); loadPrcFileData(’’,‘clock-frame-rate 30.0’)
in GL and DX9, i always get 64 fps, in tinydisplay, i get about 30 fps.
currenty there is nothing in the scene.

my code works in Panda1.81

BTW: where can i download reference for version 1.91 ?

Thanks. I’ll check in a fix for 1.9.2. In the meantime, you can set it at runtime, like this:

from panda3d.core import ClockObject

clock = ClockObject.getGlobalClock()
clock.setMode(ClockObject.MLimited)
clock.setFrameRate(30)