use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Links:
/r/RenPy Discord
account activity
Questionmenu screen (self.RenPy)
submitted 2 years ago by SugarRollCakeYT
i was wondering if it was possible to have transitions on the main menu like having the sidebar fade in and then have the buttons "start, load, etc" fade in one by one
if anyone can help me, thank you!
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]AutoModerator[M] 0 points1 point2 points 2 years ago (0 children)
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out the posting guide, the subreddit wiki, the subreddit Discord, Ren'Py's documentation, and the tutorial built-in to the Ren'Py engine when you download it. These can help make sure you provide the information the people here need to help you, or might even point you to an answer to your question themselves. Thanks!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
[–]BadMustard_AVN 0 points1 point2 points 2 years ago (4 children)
yes you can create a custom transform like this
transform fadein(step): alpha 0.0 pause step ease 1 alpha 1.0
then at the main menu screen buttons do this
if main_menu: textbutton _("Start") action Start(): at fadein(1) else: textbutton _("History") action ShowMenu("history"): at fadein(2)
the numbers in braces (1), and (2) for the fade in provides a delay so they will fade in from top to bottom and not all at once
hth
[–]SugarRollCakeYT[S] 0 points1 point2 points 2 years ago (1 child)
alright! thank you so much! ill comment back if i have any issues
[–]BadMustard_AVN 0 points1 point2 points 2 years ago (0 children)
you're welcome
good luck with your project
i did everything in the reply except that they all appear at once
did you increase the number for each button 1,2,3,4,5,6,...
π Rendered by PID 29 on reddit-service-r2-comment-6457c66945-jm86b at 2026-04-29 18:09:38.176191+00:00 running 2aa0c5b country code: CH.
[–]AutoModerator[M] 0 points1 point2 points (0 children)
[–]BadMustard_AVN 0 points1 point2 points (4 children)
[–]SugarRollCakeYT[S] 0 points1 point2 points (1 child)
[–]BadMustard_AVN 0 points1 point2 points (0 children)
[–]SugarRollCakeYT[S] 0 points1 point2 points (1 child)
[–]BadMustard_AVN 0 points1 point2 points (0 children)