I've changed main menu background. Then I decided to add simple animation on top of it, playing from file frames. I see there are many ways, but I decided to go via altering main menu screen. So, inside scree.rpy:
Code: Select all
screen main_menu:
# This ensures that any other menu screen is replaced.
tag menu
# The background of the main menu.
window:
style "mm_root"
add "main_menu" <--- I ADDED THIS Before this, inside my script.rpy, I have added this:
Code: Select all
image main_menu:
"menuwalk/menuwalk_0135.png"
xanchor 0.5
yanchor 0.5
rotate 0
linear 50.0 rotate 360
repeatSo, umm, my first question: after all I did, why I still can't see my animation playing on main menu?
Second: Can I somehow force renpy to throw errors, when it encounters undefiend variable or path which doesn't exist?