Search found 8 matches

by Jacksono
Thu Jun 24, 2021 8:13 am
Forum: Ren'Py Questions and Announcements
Topic: renpy.save() lag problem
Replies: 5
Views: 1768

Re: renpy.save() lag problem

The process will need time to save to file, so that is the reason why there is a lag. It will block until the write is finished. For autosave, this is done on separate thread so there is much less lag on powerful devices. To force autosave, you can use renpy.loadsave.force_autosave(True) This will ...
by Jacksono
Wed Jun 23, 2021 10:50 pm
Forum: Ren'Py Questions and Announcements
Topic: renpy.save() lag problem
Replies: 5
Views: 1768

Re: renpy.save() lag problem

Why don't just use autosave? Yeah, it would be a quick alternative, but the problem is I desire to switch off saving at certain points in the game for in-game purposes. What I am more interested in is why does using renpy.save() cause a lag, while autosave does not cause a lag (especially consideri...
by Jacksono
Wed Jun 23, 2021 6:31 am
Forum: Ren'Py Questions and Announcements
Topic: renpy.save() lag problem
Replies: 5
Views: 1768

Re: renpy.save() lag problem

Such a pityyy
by Jacksono
Thu Jun 17, 2021 12:42 am
Forum: Ren'Py Questions and Announcements
Topic: renpy.save() lag problem
Replies: 5
Views: 1768

renpy.save() lag problem

Hi In my game, I have decided to implement a very simple saving system (rather than the default saving system) so I can easily control when saving can occur and not. This includes after a choice is made and when the player quits the game or returns to the menu. The code looks like this: init python:...
by Jacksono
Sat Sep 05, 2020 5:00 am
Forum: Ren'Py Questions and Announcements
Topic: Altering Music Pitch
Replies: 2
Views: 330

Re: Altering Music Pitch

Ooo I see Thank you for your answer. I will see what pygame module offers for audio and all. And if that doesn't work out, I can definitely just have individual audio files of different pitches. In any case, I am sure I'll eventually figure something out. Thank you again!
by Jacksono
Fri Sep 04, 2020 8:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Altering Music Pitch
Replies: 2
Views: 330

Altering Music Pitch

Heyo I have been wondering if Ren'py can support music pitch alteration. If so, what would the necessary steps be to make it so. I am looking for two forms of music pitch changing: 1. Changing the pitch actively (i.e. the music gradually slows down over a set amount of time). 2. Changing the pitch o...
by Jacksono
Sun Aug 09, 2020 7:12 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Loading error occuring in Main Menu - Attribute Error
Replies: 1
Views: 313

Re: Loading error occuring in Main Menu - Attribute Error

Don't worry. I solved it myself. Turns out I had to make the name-related functions under 'init python' rather than 'python' lol
by Jacksono
Sat Aug 08, 2020 9:05 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Loading error occuring in Main Menu - Attribute Error
Replies: 1
Views: 313

[Solved]Loading error occuring in Main Menu - Attribute Error

Hi. In the game I am creating, I have tried to implement a saving system where the player cannot actively save their game through a "save" button, but instead the game uses the autosave system for saves. Moreover, when they exit the game or a choice is prompted, it automatically saves as w...