#================================================= # ¾Ë¸²¸» Àü¿ë ¸Þ¼¼Áö #------------------------------------------------- # my¸Þ¼¼Áö Á¦ÀÛÀÚ : ÆдР# ¾Ë¸²¸» Á¦ÀÛ :ºÎÈ° #================================================= class Scene_Map < Scene_Map def initialize super $alime = Window_Help.new $alime.opacity = 0 $alime.z = 999 end def update super if $alime.disposed? $alime = Window_Help.new end #¾Ë¸²¸» Áö³ª°¡´Â ¼Óµµ Á¶Á¤-ºÎÈ° $alime.x -= 3 if $scene != self $alime.dispose end end end def ¾Ë¸²¸»(text, x, y, fs, op) $alime.opacity = op $alime.contents_opacity = 255 $alime.contents.font.size = fs $alime.set_text(text, 1) $alime.x = x $alime.y = y end