So, hi. Well, basically I'm using Trevor 777's Ring Menu and I want to edit it to be my title screen. And there's this little problem I can't figure out.
If you pay attention to the big red "MISSING" in line number 5 there's nothing written between the two brochures. And that is where the New_Game function should be. But I don't know how to call it because whenever I type $game_system = Game_System.new on the playtest that New Game function does nothing.
Could someone be so kind to explain me what is it that I'm not doing?
Code:
def create_options
# Create empty options with no graphics, with just block of instructions
opt = [
RMenu_Option.new {[color=#FF0000]MISSING[/color]} ,
RMenu_Option.new { $scene=Scene_Load.new } ,
RMenu_Option.new { exit } ,
]
# You can access each option graphics, and change them if needed
opt[0].sprite.bitmap = Bitmap.new(64,32)
opt[0].sprite.bitmap.draw_text(0,0,64,32, "New Game",1)
opt[1].sprite.bitmap = Bitmap.new(64,32)
opt[1].sprite.bitmap.draw_text(0,0,64,32, "Load",1)
opt[2].sprite.bitmap = Bitmap.new(64,32)
opt[2].sprite.bitmap.draw_text(0,0,64,32, "Shutdown",1)
opt
end
If you pay attention to the big red "MISSING" in line number 5 there's nothing written between the two brochures. And that is where the New_Game function should be. But I don't know how to call it because whenever I type $game_system = Game_System.new on the playtest that New Game function does nothing.
Could someone be so kind to explain me what is it that I'm not doing?