Auteur: Yukihiro matsumoto
#============================================
# ¡ö Main
#----------------------------------------------
# ¡¡¸÷¥¯¥é¥¹¤Î¶¨Áx¤¬½K¤ï¤Ã¤¿áá¡¢¤³¤³¤«¤éŒgëH¤Î„IÀí¤¬Ê¼¤Þ¤ê¤Þ¤¹¡£
#============================================
begin
# Change the $fontface variable to change the font style
$fontface = "Arial"
# Change the $fontsize variable to change the font size
$fontsize = 24
# ¥È¥é¥ó¥¸¥·¥ç¥óœÊ‚ä
Graphics.freeze
# ¥·©`¥ó¥ª¥Ö¥¸¥§¥¯¥È (¥¿¥¤¥È¥ë»Ãæ) ¤ò×÷³É
$scene = Scene_Title.new
# $scene ¤¬ÓЄ¿¤ÊÏÞ¤ê main ¥á¥½¥Ã¥É¤òºô¤Ó³ö¤¹
while $scene != nil
$scene.main
end
# ¥Õ¥§©`¥É¥¢¥¦¥È
Graphics.transition(20)
rescue Errno::ENOENT
# ÀýÍâ Errno::ENOENT ¤òÑa×ã
# ¥Õ¥¡¥¤¥ë¤¬¥ª©`¥×¥ó¤Ç¤¤Ê¤«¤Ã¤¿ˆöºÏ¡¢¥á¥Ã¥»©`¥¸¤ò±íʾ¤·¤Æ½KÁˤ¹¤ë
filename = $!.message.sub("Ne trouve pas le fichier ou le r¨¦pertoire - ", "")
print("Le ficher #{filename} n'a pas ¨¦t¨¦ trouv¨¦.")
end |
|