Is there any way to change the framerate at which a program runs?

Need to do this for a project of mine, but can’t find anything related in the documentation.

The draw function runs at 60 FPS max. You can slow it down, but you can’t speed it up. You didn’t say which way you wanted to go.

Sorry for not specifying, but I would like my program to run at more frames than 60.

@CyborgSquirrel The draw function runs at a max of 60 FPS which can’t be increased at this time.

@CyborgSquirrel what’s the reason for needing a faster frame rate? The draw function is synced to the display refresh rate, which is why the lock at 60hz. It would be great to understand the particular problem you’re facing.