赞 | 1 |
VIP | 0 |
好人卡 | 0 |
积分 | 11 |
经验 | 0 |
最后登录 | 2024-11-21 |
在线时间 | 110 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1051
- 在线时间
- 110 小时
- 注册时间
- 2023-4-30
- 帖子
- 8
|
2楼
楼主 |
发表于 2024-4-4 18:34:31
|
只看该作者
发现游戏内背景图片无法完全显示的问题
解决方法如下,打开RM工程内js文件夹
右键rmmz_sprites.js这个文件,用记事本打开
在记事本内按Ctrl+F复制下列代码粘贴到搜索栏里,选向下查找
Sprite_Battleback.prototype.adjustPosition = function() {
this.width = Math.floor((1000 * Graphics.width) / 816);
this.height = Math.floor((740 * Graphics.height) / 624);
把找到的代码换成我这段即可
Sprite_Battleback.prototype.adjustPosition = function() {
this.width = Math.floor((1920 * Graphics.width) / 1920);
this.height = Math.floor((1080 * Graphics.height) / 1080);
效果图对比:未修改的样子
效果图对比:修改后的样子
通过对比可以看到,修改后的图片显示范围明显比修改前大了一圈
|
|