#==============================================================================
# ■ 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