First of all,is images in general... what is the standard size? 800x600 or 1024x768?
then in regards to the main menu, how can i properly customize it.
As of now I am using the ui function for the main menu, and was successful so far...however it seems to act weird on me like whenever i hover, the button suddenly go small?? and then suddenly after I click one (for example preferences) then go back to the main menu, the customized buttons are gone and it reverts back to the usual generic buttons according to themes...
So, I was wondering if there was something wrong with my codes??
label main_menu:
scene mainmenu
$ ui.vbox(xpos=0.83, ypos=0.25)
$ ui.imagebutton("startgame.png", "startgame1.png", clicked=ui.returns("start"))
$ ui.imagebutton("loadgame.png", "loadgame1.png", clicked=ui.returns("load"))
$ ui.imagebutton("preferences.png", "preferences1.png", clicked=ui.returns("prefs"))
$ ui.imagebutton("quit.png", "quit1.png", clicked=ui.returns("quit"))
$ ui.close()
$ result = ui.interact()
if result == "start":
hide mainmenu
$ renpy.jump_out_of_context("start")
if result == "load":
jump load_screen
if result == "prefs":
jump preferences_screen
if result == "quit":
$ renpy.quit()
return
Thanks so much
