Search found 8 matches
- Tue May 29, 2018 2:44 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Error output hook
- Replies: 2
- Views: 300
Re: Error output hook
Well, shucks.
- Tue May 29, 2018 10:39 am
- Forum: Ren'Py Questions and Announcements
- Topic: Error output hook
- Replies: 2
- Views: 300
Error output hook
I am wondering if there exists any way to hook into the error output (the notifications that Ren'Py displays on screen when playing the game and experiencing an error or crash). I am working on some post-deployment analytics tools, and it would be very useful to be able to collect at least some of t...
- Thu May 03, 2018 12:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Online Comic
- Replies: 11
- Views: 1068
Re: Online Comic
What about WebWorkers?
- Sun Apr 08, 2018 3:21 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved]Save Game Singleton Persistence Issue
- Replies: 6
- Views: 787
Re: Save Game Singleton Persistence Issue
Turns out the issue was not with collections or the singleton derivation, but rather that the dicts and lists were being declared as static variables rather than instance variables. I haven't done a lot of in-depth OOP in Python, and did not realize that variables declared outside of __init__ were s...
- Sat Apr 07, 2018 6:38 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved]Save Game Singleton Persistence Issue
- Replies: 6
- Views: 787
Re: Save Game Singleton Persistence Issue
After digging a little further into this, the issue does not seem to be the singletons themselves, but rather the collections (Lists and Dicts) within the Singleton classes. I realized that my singletons with value referencing properties persist fine, but the collections do not These are what really...
- Fri Apr 06, 2018 10:47 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved]Save Game Singleton Persistence Issue
- Replies: 6
- Views: 787
[Solved]Save Game Singleton Persistence Issue
I am running into issues with objects not persisting when saved games are resumed. Many of the systems in my game are oriented around the singleton pattern, and I feel like this may be the source of the issue. Generally, I have a singleton metaclass that all of the relevant gameplay systems use. The...
- Fri Mar 16, 2018 5:32 am
- Forum: Ren'Py Questions and Announcements
- Topic: Variable not interpolating in imagebutton string
- Replies: 2
- Views: 554
Re: Variable not interpolating in imagebutton string
Works perfectly, thank you.
- Fri Mar 16, 2018 4:10 am
- Forum: Ren'Py Questions and Announcements
- Topic: Variable not interpolating in imagebutton string
- Replies: 2
- Views: 554
Variable not interpolating in imagebutton string
Fairly experienced coder, Renpy has been somewhat confusing so far but am starting to get a pretty good handle on how it interacts with actual Python code (which has made me far more comfortable). I encountered my first error tonight that I can't seem to figure out. I am building out an inventory sc...