Search found 4 matches

by Dyschology
Tue Mar 09, 2021 1:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Is Pygame the Correct Option For Advanced Game Making Tools in Modern Renpy?
Replies: 1
Views: 327

Is Pygame the Correct Option For Advanced Game Making Tools in Modern Renpy?

Hello, I'd like to make a VN card game hybrid using Renpy. To do this it looks like I'm going to need to use some of the more advanced features of Renpy and plenty of python. Drag objects seem perfect for what I need but I'm going to need better dynamic control than Screen Language can give me. What...
by Dyschology
Thu Dec 07, 2017 11:36 am
Forum: Ren'Py Questions and Announcements
Topic: Passing Pre-Interpolated Strings to Text()
Replies: 6
Views: 1884

Re: Passing Pre-Interpolated Strings to Text()

Aright, after trying a million things I finally figured it out. Unfortunately using renpy.substitute gave me the same error. Using normal % interpolation also didn't work, however using what the wiki called "faking it" and passing the arguments after the string in a tuple separated by a % ...
by Dyschology
Wed Dec 06, 2017 7:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Passing Pre-Interpolated Strings to Text()
Replies: 6
Views: 1884

Re: Passing Pre-Interpolated Strings to Text()

Wow that was fast, thanks! However my goal isn't to completely turn off interpolation, otherwise my item description would just be a bunch of variable names. I'm trying to figure out some way to be able to use interpolation while still ending up with a Text displayable I can pass to my custom displa...
by Dyschology
Wed Dec 06, 2017 6:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Passing Pre-Interpolated Strings to Text()
Replies: 6
Views: 1884

Passing Pre-Interpolated Strings to Text()

Hello all, I'm trying to set up a screen displayable that, when shown, will display text that is bound to the mouse cursor. I've created a custom displayable based on Apricotorange's flashlight tutorial (https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=20872) that takes a displayable as an...