Search found 5 matches
- Fri Sep 02, 2022 7:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: Loading new images from disk while game is running
- Replies: 5
- Views: 297
Re: Loading new images from disk while game is running
Oh I think I finally got it! Took a while of digging through documentation, but I've finally realised that renpy.show() doesn't just have to use the name of an image registered by renpy.image(). If you use the optional 'what' argument you can pass a displayable directly to renpy.show() and bypass th...
- Fri Sep 02, 2022 6:54 am
- Forum: Ren'Py Questions and Announcements
- Topic: Loading new images from disk while game is running
- Replies: 5
- Views: 297
Re: Loading new images from disk while game is running
Thank you! The news module in particular is a great example - im.Data() is a function I hadn't seen before, and that makes some of what I'm doing a lot easier. I'm starting to understand the different ways in which images are handled better. So I guess the main issue I'm having now is - I can make a...
- Thu Sep 01, 2022 6:19 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Loading new images from disk while game is running
- Replies: 5
- Views: 297
Loading new images from disk while game is running
In brief, is there any workaround that would allow me to load a new image via Python after init? I am downloading new image files while the game is running, and would like to display them as background/character images. However, I cannot run renpy.image outside of init. I've tried using a DynamicIma...
- Sun Jan 19, 2014 8:43 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Disabling Left-Click Advance in Lieu of Hyperlink Navigation
- Replies: 3
- Views: 759
Re: Disabling Left-Click Advance in Lieu of Hyperlink Naviga
To answer the question, you'd probably want to do something like: nvl_clear() narrator(sceneDict[scene], interact=False) ui.interact() The interact=False will show the dialogue without interacting or calling ui.saybehavior - the result of which is that interaction is suspended. That being said, I w...
- Sun Jan 19, 2014 5:15 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Disabling Left-Click Advance in Lieu of Hyperlink Navigation
- Replies: 3
- Views: 759
Disabling Left-Click Advance in Lieu of Hyperlink Navigation
I'm experimenting with writing a Ren'Py parser for TweeCode - a wholesale solution that would allow code from Twine to be imported and used without further modification. To this end I'm trying to set up a system that largely avoids labels in their traditional Ren'Py usage and instead parses its own ...