Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Screen Tearing

Is there a way to remove screen tearing in RMXP? In particular, the tearing that occurs while exploring maps.

I know Ruby, so if you point me in the right direction, I will probably be able to figure it out. I'm just not quite talented enough to find out where to start, exactly. :/

Perhaps there are scripts which fix it?
 

khmp

Sponsor

You can reduce the screen tearing thing by using F1 when in playtesting and checking the checkbox next to "Reduce Screen Tearing". However I'm not sure how that's fixed in code outside of increasing the frames per second. Hope this helps.

Go into your script editor and add another right above main

Code:
class Scene_Title
  alias old_main main
  def main
    Graphics.frame_rate = 60 # This value can be anywhere between 10-120
    old_main
  end
end

Good luck Retlaf! :thumb:
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top