복호화 파일이 아닌 전체 수정 가능한 게임 한정(vx,vxace 쯔꾸르 메이커 필수)
이런거 올려도 되는지는 모르지만 걍 올려봄.
사실 다들 아는데 뒷북이면 ㅈㅅ;
-
class Resolution
def self.resize(width,height)
getSystemMetrics = Win32API.new('user32', 'GetSystemMetrics', 'I', 'I')
moveWindow = Win32API.new('user32','MoveWindow',['l','i','i','i','i','l'],'l')
findWindowEx = Win32API.new('user32','FindWindowEx',['l','l','p','p'],'i')
window = findWindowEx.call(0,0,"RGSS Player",0)
screenwidth = getSystemMetrics.call(0)
screenheight = getSystemMetrics.call(1)
moveWindow.call(window,(screenwidth - width) / 2,(screenheight - height) / 2,width,height,1)
end
end
-
해당 스크립트를 Main 스크립트 위쪽 스크립트에 복붙
-
Graphics.resize_screen(640,480)
Resolution.resize(1280,960)
rgss_main { SceneManager.run }
-
main 스크립트를 이렇게 수정하면 화질 덜 깨지는 좀 높은 화면으로 겜 가능
Resizer나 전체화면은 진짜 화면 존나 깨져서 걍 이렇게 하는데 괜찮은듯
