Page 1 of 1

[SOLVED]Making game title an image

Posted: Sun Dec 31, 2023 6:27 pm
by Alaspooralice
I want to make the title of the game an image that I can can place on top of the main menu background rather than baking the title into the menu background. I'm just not sure how to add an image over the background in the menu. Any help would be much appreciated!

Re: Making game title an image

Posted: Sun Dec 31, 2023 8:34 pm
by Fuseblower
Hi, in the file "screens.rpy" you can look for the screen "main_menu" and do something like this :

screen main_menu():
tag menu

add "MainMenuBG.jpg"

add "Title.png":
xpos 100
ypos 50

Edit : somehow my post doesn't like tabs or spaces in front of lines. Of course proper indentation should be used.

Re: Making game title an image

Posted: Mon Jan 01, 2024 5:48 am
by m_from_space
Fuseblower wrote: Sun Dec 31, 2023 8:34 pm Edit : somehow my post doesn't like tabs or spaces in front of lines. Of course proper indentation should be used.
You have to put code inside [ code ] ... [ /code ] tags.

Re: Making game title an image

Posted: Tue Jan 02, 2024 3:07 pm
by Alaspooralice
Fuseblower wrote: Sun Dec 31, 2023 8:34 pm Hi, in the file "screens.rpy" you can look for the screen "main_menu" and do something like this :

screen main_menu():
tag menu

add "MainMenuBG.jpg"

add "Title.png":
xpos 100
ypos 50

Edit : somehow my post doesn't like tabs or spaces in front of lines. Of course proper indentation should be used.
Thank you! I was probably overthinking things and didn't think to try that;;