赞 | 22 |
VIP | 917 |
好人卡 | 110 |
积分 | 218 |
经验 | 288474 |
最后登录 | 2022-10-15 |
在线时间 | 6925 小时 |
Lv5.捕梦者 (版主)
- 梦石
- 20
- 星屑
- 1840
- 在线时间
- 6925 小时
- 注册时间
- 2012-12-14
- 帖子
- 11485
|
本帖最后由 美丽晨露 于 2013-10-17 23:31 编辑
这是更改分辨率640*480的脚本- class Win32API
- GAME_INI_FILE = ".\\Game.ini"
- def Win32API.GetPrivateProfileString(section, key)
- val = "\0"*256
- gps = Win32API.new('kernel32', 'GetPrivateProfileString',%w(p p p p l p), 'l')
- gps.call(section, key, "", val, 256, GAME_INI_FILE)
- val.delete!("\0")
- return val
- end
- def Win32API.FindWindow(class_name, title)
- fw = Win32API.new('user32', 'FindWindow', %(p, p), 'i')
- hWnd = fw.call(class_name, title)
- return hWnd
- end
- HWND_TOP = 0
- HWND_TOPMOST = -1
- SWP_NOMOVE = 2
- def Win32API.SetWindowPos(hWnd, w, h)
- swp = Win32API.new('user32', 'SetWindowPos', %(l, l, i, i, i, i, i), 'i')
- ok = swp.call(hWnd, HWND_TOP, 0, 0, w, h, SWP_NOMOVE)
- return ok
- end
- end
- #以下是分辨率变更
- title = Win32API.GetPrivateProfileString("Game", "Title")
- hWnd = Win32API.FindWindow("RGSS Player", title)
- #使用时X轴加6,Y轴加25,否则画面会变形
- ok = Win32API.SetWindowPos(hWnd, 646, 505)
- if(ok == 0)
- p "失败"
- end
复制代码 自行参考注释修改吧 |
评分
-
查看全部评分
|