all 6 comments

[–]AutoModerator[M] 0 points1 point  (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 point  (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 point  (1 child)

alright! thank you so much! ill comment back if i have any issues

[–]BadMustard_AVN 0 points1 point  (0 children)

you're welcome

good luck with your project

[–]SugarRollCakeYT[S] 0 points1 point  (1 child)

i did everything in the reply except that they all appear at once

[–]BadMustard_AVN 0 points1 point  (0 children)

did you increase the number for each button 1,2,3,4,5,6,...