Hey, I was wondering how I can place an image and some text inside a selection menu.
I know the code for the actual drawing of the text and picture, but I am not sure how to incorporate it into the selection.
Here is my code:
Thanks.
I know the code for the actual drawing of the text and picture, but I am not sure how to incorporate it into the selection.
Here is my code:
PHP:
lass Scene_Menu
def initialize (menu_index = 0)
@menu_index = menu_index
end
#---------------------------------------------------------------------------------
def main
s1 = "No Entry"
s2 = "Enter"
@window = Window_Command.new(200, [s1,s2])
@window.y=50
@window.x=440
@window.height=400
@window.index = @menu_index
Thanks.