VXAceでメニューのアクター名の右にステートを表示したい
Posted: 2021年1月24日(日) 15:32
メニューでアクター名の右にステートを表示するようにしたいです。
コード: 全て選択
class Window_MenuStatus
#--------------------------------------------------------------------------
# ● シンプルなステータスの描画
#--------------------------------------------------------------------------
def draw_actor_simple_status(actor, x, y)
draw_actor_name(actor, x, y)
draw_actor_level(actor, x, y + line_height * 1)
#~ draw_actor_icons(actor, x, y + line_height * 2)
draw_actor_icons(actor, x + 96, y)
draw_actor_class(actor, x + 120, y)
draw_actor_hp(actor, x + 120, y + line_height * 1)
draw_actor_mp(actor, x + 120, y + line_height * 2)
end
end