345912390 发表于 2012-3-25 08:40
在Game_Map里加入
#-------------------------------------------------------------------------- # ● 刷新 #-------------------------------------------------------------------------- def refresh contents.clear unless $game_map.display_name.empty? draw_background(contents.rect) draw_text(contents.rect, $game_map.display_name, 1) draw_text(contents.rect, $game_map.note, 1) end end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
contents.clear
unless $game_map.display_name.empty?
draw_background(contents.rect)
draw_text(contents.rect, $game_map.display_name, 1)
draw_text(contents.rect, $game_map.note, 1)
end
end
那在段Window_Mapname脚本里面怎么把描绘备注的行改成在名字显示的下一行呢? 试了好多次都没成功~ 嘿嘿,求大大指教 |