赞 | 170 |
VIP | 6 |
好人卡 | 208 |
积分 | 230 |
经验 | 137153 |
最后登录 | 2024-11-18 |
在线时间 | 8639 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 22978
- 在线时间
- 8639 小时
- 注册时间
- 2011-12-31
- 帖子
- 3367
|
若只想修正戦鬥画面怪物座標不正常的問題
可用以下脚本可修正怪物出現座標
這脚本放在Main之前
#==============================================================================
# ■ Sprite_Battler
#------------------------------------------------------------------------------
# BUG修复:調整分辨率後敵人相對位置錯誤。
#==============================================================================
class Sprite_Battler < Sprite_Base
#--------------------------------------------------------------------------
# ● 更新位置
#--------------------------------------------------------------------------
def update_position
self.x = @battler.screen_x + (Graphics.width - 544)/2
self.y = @battler.screen_y + (Graphics.height - 416)/2
self.z = @battler.screen_z
end
end |
|