- Joined
- Apr 20, 2019
- Messages
- 210
- Reaction score
- 18
- First Language
- Spanish
- Primarily Uses
- RMMV
So I'm desperately trying to get the Slow Motion using this Japanese plugin, but I simply does nothing for me. I change the plugin's placement. Removed all FPS upgrade plugins, but nothing.
Despite having zero coding knoledge I even tried to use it as a Script Call:
With no success.. Any thoughts?
Despite having zero coding knoledge I even tried to use it as a Script Call:
Code:
var scene_Map_update = Scene_Map.prototype.update;
Scene_Map.prototype.update = function() {
var fps = (100 / 50) / 60.0;
} else {
var fps = 1.0 / 60.0;
}
SceneManager._deltaTime = fps;
scene_Map_update.call(this);
};
With no success.. Any thoughts?