The Sea King
Member
How do I change the font in the main menu and in the messages?
class Font
begin
Font.default_name = "Times New Roman" # hab?a escogido Century Gothic 30
Font.default_size = 20
Font.default_bold = false
end
end
Font.default_name = "Modern"
Font.default_size = 16
Font.default_bold = false
Font.default_italic = false
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
begin
[b]Put the code here! After begin.[/b]
# Prepare for transition
Graphics.freeze
# Make scene object (title screen)
$scene = Scene_Title.new
# Call main method as long as $scene is effective
while $scene != nil
$scene.main
end
# Fade out
Graphics.transition(20)
rescue Errno::ENOENT
# Supplement Errno::ENOENT exception
# If unable to open file, display message and end
filename = $!.message.sub("No such file or directory - ", "")
print("Unable to find file #{filename}.")
end