Then it should be left to on. If you are still having FPS issues with it then try this.
1. Make a file in your game dir\www\js\plugins\ folder called FPSLimit.js
2. Copy the following code into it
JavaScript:
//=============================================================================
// FPSLimit.js
//=============================================================================
/*:
* @plugindesc Limits game refresh rate
* @author ocean pollen
*
* @param FPS Limit
* @desc For a 20FPS limit, set this to 20, etc.
* Default: 60
* @default 60
*
* @help This plugin does not provide plugin commands.
*/
;(function() {
var desiredFPS = Number(PluginManager.parameters('FPSLimit')['FPS Limit']),
frameLimit = 1000/desiredFPS,
nextUpdate = 0,
timeout = null
SceneManager.requestUpdate = function() {
if (!this._stopped) {
var now = Date.now()
if (now >= nextUpdate) {
if (timeout) { clearTimeout(timeout); timeout = null }
nextUpdate = now + frameLimit
requestAnimationFrame(this.update.bind(this))
} else {
var that = this
timeout = setTimeout(function() {
nextUpdate = Date.now() + frameLimit;
requestAnimationFrame(that.update.bind(that))
}, nextUpdate - now)
}
}
}
})()
3. open the plugins.js file in the game dir\www\js folder
4.Insert this line of code just before the last plugin on the list
JavaScript:
{"name":"FPSLimit","status":true,"description":"","parameters":{}},
The case matters for file name and the name parameter so make sure they match
5. Reload the game.