- 声望
- 点
- 金币
- 枚
- 银币
- 枚
- 铜币
- 枚
- 注册时间
- 2010-5-12
- 最后登录
- 1970-1-1
|
发表于 2016-6-25 22:24:20
|
显示全部楼层
我的显示器也是和你一样的,手动修改方法:
(修改方法来源:www.reddit.com)
1.打开游戏目录.
2.找到“settings.json”文件用记事本打开.
3.按“Ctrl+F”键搜索"ScreenSettings".
4.然后将 "width" : 1440,修改为"width" : 2560,再将下一行的"height" : 900,修改为 "height" : 1080。一共修改四处。
5.保存退出。
6.点击“settings.json”文件属性,设置为“只读”。
修改后的参数:
- "ScreenSettings" : {
- "type" : "BBI.Unity.Game.ScreenSettings",
- "Fullscreen" : true,
- "ScreenResolution" : {
- "__type" : "UnityEngine.Resolution",
- "width" : 2560,
- "height" : 1080,
- "refreshRate" : 0
- },
- "VSYNCOn" : true,
- "m_Fullscreen" : true,
- "m_ScreenResolution" : {
- "__type" : "UnityEngine.Resolution",
- "width" : 2560,
- "height" : 1080,
- "refreshRate" : 0
- },
复制代码
2560x1080游戏分辨率截图:
|
|