Hi, guys.
I was messin' around with my game, and I found out a funny thing :
You can custom your FPS in RMXP.
So I'm going to let you guys how to do it.
but this one is really simple, and so it isn't really good at all.
So, If you have ideas to improve it, give a reply.
This is how to do it :
1. First, Open up your script editor (F11) and go into Scene_Map class.
2. look at defenition update (def update)
Find this code. and put
this code above.
Then run your game. When you're in map, you can see it is running in 60FPS.
and also, you can make your entire game in your custom speed by putting
frame rate code in main class (which is in bottom)
* Result :Some bad computers just gets worse FPS sometimes, but this one works in most of computers.
I was messin' around with my game, and I found out a funny thing :
You can custom your FPS in RMXP.
So I'm going to let you guys how to do it.
but this one is really simple, and so it isn't really good at all.
So, If you have ideas to improve it, give a reply.
This is how to do it :
1. First, Open up your script editor (F11) and go into Scene_Map class.
2. look at defenition update (def update)
Code:
unless $game_player.moving?
Code:
Graphics.frame_rate = 60
Then run your game. When you're in map, you can see it is running in 60FPS.
and also, you can make your entire game in your custom speed by putting
Code:
Graphics.frame_rate = 60
* Result :Some bad computers just gets worse FPS sometimes, but this one works in most of computers.