Search found 7 matches

by Aasta
Sun Aug 10, 2014 9:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Main Menu animations sticking through menus.
Replies: 5
Views: 788

Re: Main Menu animations sticking through menus.

Offhand - why are you showing the bat_ screens with Show and Hide, rather than using them from your various other screens. Not sure I understand the question, but if I understand correctly you are asking why I don't just show the screens as is and use a show/hide command? The answer is that I neede...
by Aasta
Sat Aug 09, 2014 4:59 am
Forum: Ren'Py Questions and Announcements
Topic: Main Menu animations sticking through menus.
Replies: 5
Views: 788

Re: Main Menu animations sticking through menus.

The bat_flap and bat_flaps was an animation I had on the main menu (bat_flaps being simply a duplicate of bat_flap) for showing when the imagebuttons were hovered. The issue seemed that clicking the load or preference menus would leave the animations shown as the engine never saw the buttons "u...
by Aasta
Wed Jul 30, 2014 7:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Main Menu animations sticking through menus.
Replies: 5
Views: 788

Main Menu animations sticking through menus.

Basically the animations I have set up on the main menu on imagebutton hover don't hide when clicking on load/preferences (but does on starting the game). Here is the relevant code... screen main_menu: # This ensures that any other menu screen is replaced. tag menu # The background of the main menu....
by Aasta
Tue Jul 29, 2014 10:58 am
Forum: Ren'Py Questions and Announcements
Topic: Animations in the main menu.
Replies: 7
Views: 1187

Re: Animations in the main menu.

I'm using a repeat in the code as suggested and it still "refuses" to repeat. Here is the init block... init -2: # Make all the main menu buttons be the same size. style mm_button: size_group "mm" # Hover Animations image batani: "system/bat1.tga" pause 0.1 "system...
by Aasta
Mon Jul 28, 2014 9:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Animations in the main menu.
Replies: 7
Views: 1187

Re: Animations in the main menu.

I seem to have a "working" animation now (thank you!) however it seems to either not finish the animation or simply not repeat (due to the nature of the animation its quite difficult for me to tell which is the issue).
by Aasta
Mon Jul 28, 2014 7:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Animations in the main menu.
Replies: 7
Views: 1187

Re: Animations in the main menu.

With the image my_animation: part, where should that go? I've tried all sorts of code using exactly what you put and never could get it to work; although it is very likely the one part that slipped my mind is the working combo...
by Aasta
Mon Jul 28, 2014 7:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Animations in the main menu.
Replies: 7
Views: 1187

Animations in the main menu.

As the title states, I was wondering about "easy"/correct ways of using animations in the main menu. My specific issue lies in animated buttons, however help with animation in the main menus in general would be useful if anyone could point me in the right direction.