Search found 8 matches

by Mumeishi
Wed Sep 30, 2020 1:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

IT WORKS!!! :D :D :mrgreen: Finally everything works as it should! Here's a short video demo again: https://youtu.be/w_dU-Nj-aAc I'm so happy, thanks a lot for your help hell_oh_world! I used your recommendations plus some extra tweaking. I will put you in the credits of my game once I'm finished! :...
by Mumeishi
Wed Sep 30, 2020 12:03 am
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

To better explain how the system is currently working I made a short demo video: https://youtu.be/jYXojNB6_7c 8) I feel like we are getting SO close to it working perfectly! Right now there are a couple issues, one is that there's a blank space above the list of save slots at all times, I don't know...
by Mumeishi
Tue Sep 29, 2020 2:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

Hello again. Thanks to your help + some extra tweaking I managed to achieve a very similar look to the KS save screen so far. I added your code plus a small button that lets you delete the save by adding this part: add FileScreenshot(slot) xalign 0.0 hbox: xalign 0.5 yalign 0.5 xminimum 400 xmaximum...
by Mumeishi
Mon Sep 28, 2020 10:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

Ok, I made it possible only to LOAD by clicking on the thumbnail. But I still need to make a button that allows users to SAVE and show that saved game in the list under the first slot. I tried making one but it didn't work, I get an error saying the "ZipFileImage is not callable" (I don't ...
by Mumeishi
Mon Sep 28, 2020 9:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

Now it looks waaay better! https://i.imgur.com/wcZAgxs.png?1 Thanks a lot! Now it only shows the slots with saved games and you can scroll. I also followed your advice and made it into a viewport with a vbox but I had no idea what I had to write inside this part: for i in range(1): $ slot = i + 1 if...
by Mumeishi
Mon Sep 28, 2020 9:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

Thank you again! I'll try using your code and see how it works. When you tell me to use a vbox contained in a viewport you mean replacing the vpgrid for viewport and grid for vbox, is that correct?
by Mumeishi
Mon Sep 28, 2020 8:44 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Re: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

Thank you for the reply! I'm not sure where to add that code. But I get the purpose of using de FileLoadable() function. I pretty much just copied the original code and pasted it to my modal but I'm sure this is the wrong way to do it. My code looks like this right now (is a mess): screen my_saves()...
by Mumeishi
Mon Sep 28, 2020 4:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use
Replies: 13
Views: 727

Making a vertical scrollable LOAD/SAVE screen that only shows slots if they are in use

I reaaally need help with this one, I haven't found any thread that helps me with this particular problem. I'm making my first Renpy game and I might be a bit too ambitious for a first-timer but I'm trying to completely change the look of the default screens. To be more specific I'm trying to emulat...