Search found 5 matches

by GoodbyeHappiness
Sat Mar 11, 2023 2:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Buttons disappearing after game reboot
Replies: 8
Views: 374

Re: Buttons disappearing after game reboot

Now it's working how it should be. Thank you!
by GoodbyeHappiness
Sat Mar 11, 2023 1:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Buttons disappearing after game reboot
Replies: 8
Views: 374

Re: Buttons disappearing after game reboot

But I already have this in init python section, where class is defined, or I get something wrong?

Code: Select all


	INTERFACE = []

	t = 0
        while t < 100:
            INTERFACE.append(Interface(0, 0, "", False, 0))
            t += 1
by GoodbyeHappiness
Sat Mar 11, 2023 12:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Buttons disappearing after game reboot
Replies: 8
Views: 374

Re: Buttons disappearing after game reboot

Okay, here is my while loop "Game_Running". With it I can move around the world and Renpy will check is there any events ready to start. If event is active and time with place are corret, it calls event label. After event ends it returns back to loop. While loop is running until all events...
by GoodbyeHappiness
Sat Mar 11, 2023 9:34 am
Forum: Ren'Py Questions and Announcements
Topic: Buttons disappearing after game reboot
Replies: 8
Views: 374

Re: Buttons disappearing after game reboot

If I save the game while I'm in this while loop and reboot the game, buttons will disappear from Game screen after loading the save file. And there is no any errors in renpy, it doesn't show me anything wrong. label Game_Running: $_game_menu_screen = None #$ quick_menu = False while GameRunning: pyt...
by GoodbyeHappiness
Sat Mar 11, 2023 8:55 am
Forum: Ren'Py Questions and Announcements
Topic: Buttons disappearing after game reboot
Replies: 8
Views: 374

Buttons disappearing after game reboot

Hi all! My game works in while loop for changing locations, time and checking events. Everything is fine, but until I reboot the game. After this, loading game will load game screen without any buttons on it. I think problem is that the save point is in while loop, but what I can do with it? If I do...