Search found 3 matches

by SomeDumbOstrich
Fri May 10, 2019 10:39 am
Forum: Ren'Py Questions and Announcements
Topic: how do i animate the main menu's background, like what DDLC did?
Replies: 2
Views: 256

how do i animate the main menu's background, like what DDLC did?

i want to make a basic background animation for the main menu of my game. my original thought was to make literally 100 separate images, each one pixel different, but there's obviously a way better, more efficient way to do this, right?
by SomeDumbOstrich
Sat Mar 23, 2019 8:16 pm
Forum: Ren'Py Questions and Announcements
Topic: "ATL appears to be in an infinite loop." in GUI.rpy
Replies: 2
Views: 273

Re: "ATL appears to be in an infinite loop." in GUI.rpy

Imperf3kt wrote:
Sat Mar 23, 2019 7:45 pm
The issue is timing, you need to add some kind of interval between the frames or renpy will not be able to display them correctly.

Try adding something like pause 0.01 between each frame (you'll need to adjust the number to get your desired frame rate)
that worked, thanks!
by SomeDumbOstrich
Sat Mar 23, 2019 5:58 pm
Forum: Ren'Py Questions and Announcements
Topic: "ATL appears to be in an infinite loop." in GUI.rpy
Replies: 2
Views: 273

"ATL appears to be in an infinite loop." in GUI.rpy

so i'm attempting to create an animated background for my main menu, kind of like what DDLC has. so i tried it, but ren'py doesn't seem to like that, as it keeps saying "atl appears to be in an infinite loop", but i'm just like " that's the point ya dingus ". my code (there's probably a better way t...