SOLVED: How to set the FPS?

KGBlag

  • Posts: 38
Wasn't really able to find this in the questions. How do you set the fps and what is it by default? I assume the default is 60 but I'd like to be sure. Thanks.

« Last Edit: November 14, 2018, 11:53:52 pm by KGBlag »

Bombini

  • *
  • Posts: 1401
Hi,
you can activate an FPS monitor under "run > enable FPS monitor" to get the current FPS. Those depend obviously on your performance but default should be 60.

This might be interesting as well:
http://community.stencyl.com/index.php/topic,54666.msg291467.html#msg291467

You can set the FPS for mobile under settings > display

You can set the framrate on desktop using this code:
Code: [Select]
nme.Lib.current.stage.frameRate=30;
Cheers!

KGBlag

  • Posts: 38
Thanks for the help!  :)