No, but you can easily skip frames in the code inside the onFrame function.
Example:
The following code emulates a frame rate of 30 frames per second, skipping frames with an odd number, effectively doubling the frame rate.
function onFrame(event) { if (event.count % 2 === 0) {
source share