lunariafantasia/Scripts/_.108.rb
2024-01-12 03:12:38 -06:00

19 lines
764 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#==============================================================================
# ■ Window_Base
#------------------------------------------------------------------------------
#  ゲーム中の全てのウィンドウのスーパークラスです。
#==============================================================================
class Window_Base < Window
#--------------------------------------------------------------------------
# 性別の描画
#--------------------------------------------------------------------------
def draw_actor_sex(actor, x, y, width = 112)
if actor.woman?
change_color(hp_gauge_color1)
else
change_color(text_color(1))
end
draw_text(x, y, width, line_height, actor.sex_name)
end
end