本帖最后由 tseyik 于 2014-9-3 19:58 编辑
https://rpg.blue/thread-370867-1-1.html
加人8楼的脚本(修正各種問題)
若只修正怪物出現座標
#============================================================================== # ■ 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
#==============================================================================
# ■ 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
|