이게 main 스크립트인데.
폰트바꿀려고 폰트이름을 넣었는데
메인메뉴는물론 시작메뉴 npc들의 말들이 아이에 안나옵니다.
이건 메인 스크립트인데 뭐가잘못된거죠?
=============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 각 클래스의 정의가 끝난 후, 여기로부터 실제의 처리가 시작됩니다.
#==============================================================================
unless Font.exist?("Tahoma")
print "폰트가 발견되지 않습니다."
exit
end
begin
Graphics.freeze
$scene = Scene_Title.new
$scene.main while $scene != nil
Graphics.transition(30)
rescue Errno::ENOENT
filename = $!.message.sub("No such file or directory - ", "")
print("파일 #{filename} 이 보이지 않습니다.")
end