Search found 8 matches

by xiruo
Mon Jan 08, 2024 2:00 am
Forum: Ren'Py Questions and Announcements
Topic: Browser Renpy, Persistent Saving?
Replies: 5
Views: 47274

Re: Browser Renpy, Persistent Saving?

Sorry, I honestly forgot I posted this. But I think my wording must have confused you. I wasn't talking about only incognito mode, I said that "it seems like when in incognito or using a site like itch.io to host the browser game, there's no way for them to save it into the game's save files&qu...
by xiruo
Mon Jan 08, 2024 1:51 am
Forum: Ren'Py Questions and Announcements
Topic: Changing game menu UI, it KINDA works...
Replies: 1
Views: 75955

Changing game menu UI, it KINDA works...

So I want to be able to change the game menu UI mid-game multiple times. (Basically, I'm changing character POV and I want the game menu to reflect that.) I set up a default variable that I change to the character's name when I want to change the game menu. I have the variable in options.rpy: #For P...
by xiruo
Mon Oct 16, 2023 1:11 am
Forum: Ren'Py Questions and Announcements
Topic: Browser Renpy, Persistent Saving?
Replies: 5
Views: 47274

Browser Renpy, Persistent Saving?

Hello! I'm thinking about making a browser game using Renpy and then using itch.io to host it. The issue is, when hosting games on itch or using the incognito browser to test running it locally, whenever a user saves the game, that save doesn't stay after a refresh of the page. The process being: - ...
by xiruo
Wed Aug 30, 2023 12:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Ignoring The First Hover Action? For Imagebuttons.
Replies: 1
Views: 488

Ignoring The First Hover Action? For Imagebuttons.

Hello! I'm currently making this bag icon that will open the inventory. Right now, I'm using selected idle/hover. When the inventory is not open, I want to hover over the bag icon and have it open. When the inventory IS open, I want to hover over the bag and it will close. Idle Closed: https://cdn.d...
by xiruo
Fri Dec 30, 2022 5:48 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with side image positioning when doing rollback or skip?
Replies: 0
Views: 600

Problem with side image positioning when doing rollback or skip?

Hello! I have this issue with the side image showing up at the wrong location whenever I rollback or skip through the dialogue. Basically I've set the transfom to slide in from the left. I've also changed the transform for when the image is the same (it's nothing different, but I thought it would ke...
by xiruo
Sat Dec 03, 2022 4:32 am
Forum: Ren'Py Questions and Announcements
Topic: What is the "at_list" for renpy.show() ?
Replies: 1
Views: 510

What is the "at_list" for renpy.show() ?

I couldn't find many examples of this, but I want to show an image with a function that is initialized in the python init block but its not really working out. I saw on the documentation that there is a "at_list" argument that takes a list of transforms? But I'm not sure what that looks li...
by xiruo
Thu Dec 01, 2022 3:55 am
Forum: Ren'Py Questions and Announcements
Topic: custom game menu transition / transition with transparency
Replies: 2
Views: 633

Re: custom game menu transition / transition with transparency

Woah, thank you! This worked perfectly! It didn't hit me that you could use the MultipleTransition transition to get around this, thank you! The final code I ended up using, btw: The default slideright/slideawayright were kinda slow so I added that change :> define on_screen = { "screens" ...
by xiruo
Wed Nov 30, 2022 8:00 am
Forum: Ren'Py Questions and Announcements
Topic: custom game menu transition / transition with transparency
Replies: 2
Views: 633

custom game menu transition / transition with transparency

Hello! I've been looking around for a while to see if there have been any answers but I still don't know if this is possible. Basically, what is happening is that I want to slide in this notebook for the game menu. Basically have it slide in over the current game screen. Right now I'm using cropmove...