Main Menu ATL help
Posted: Fri Aug 21, 2015 3:36 pm
So... I have this picture for my title screen, and There's a flower, thats supposed to be dripping blood from one of the petals. I already drew all the images. but now I have to code them into Renpy
I put this in my screens
and my mm_root is set to #000000, but all I get is a black screen, how do i see the animation....
I put this in my screens
Code: Select all
##############################################################################
# Main Menu
#
# Screen that's used to display the main menu, when Ren'Py first starts
# http://www.renpy.org/doc/html/screen_special.html#main-menu
screen main_menu():
image titleimage:
add "images/QP1.jpg"
pause 0.1
add "images/QP2.jpg"
pause 0.1
add "images/QP3.jpg"
pause 0.1
add "images/QP4.jpg"
pause 0.1
add "images/QP5.jpg"
pause 0.1
add "images/QP6.jpg"
pause 0.1
add "images/QP7.jpg"
pause 0.1
add "images/QP8.jpg"
pause 0.1
repeat
# This ensures that any other menu screen is replaced.
tag menu
# The background of the main menu.
window:
style "mm_root"
use titleimage()