XP의 느린FPS 빠르게하기

by 주유공근615 posted Feb 22, 2011
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

지금까지 XP가 VX보다 약간 화면이 끊긴다고 생각하신분 없나요?
이제 1초에 60번 화면이 리프레쉬 되면서 좀더 부드럽게 게임할수잇습니다 
뒷북인진 모르겟지만 미국싸이트에서 찾앗습니다 ㅋㅋ

Main<으로가서 아래 스크립트를 적용하세용


begin
  # Set the FPS to 60
  Graphics.frame_rate = 60
  # Prepare for transition
  Graphics.freeze
  # Make scene object (title screen)
  $scene = Scene_Title.new
  # Call main method as long as $scene is effective
  while $scene != nil
    $scene.main
  end
  # Fade out
  Graphics.transition(20)
rescue Errno::ENOENT
  # Supplement Errno::ENOENT exception
  # If unable to open file, display message and end
  filename = $!.message.sub("No such file or directory - ", "")
  print("Unable to find file #{filename}.")
end

http://www.neoseeker.com/forums/22121/t985563-making-rpg-maker-xp-run-on-60-fps/
출처