Search found 4 matches

by Ireallydunno
Sun Dec 16, 2018 1:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved] Trouble with monologue mode
Replies: 2
Views: 433

Re: [solved] Trouble with monologue mode

Thank you very much. Apperently I was using a fearure in a version where it didn't exist yet. Now everything works fine. Talk about overlooking the glaringly obvious :oops:
by Ireallydunno
Sun Dec 16, 2018 12:55 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved] Trouble with monologue mode
Replies: 2
Views: 433

[solved] Trouble with monologue mode

Hello everyone, I came across the monologue mode in the wiki ( https://www.renpy.org/doc/html/dialogue.html#monologue-mode ). However when trying it out, I couldn't get it to work. Probably theres something glaringly obvious that I currently overlook. My code is as follows: """ minima...
by Ireallydunno
Sat Sep 01, 2018 11:11 am
Forum: Ren'Py Questions and Announcements
Topic: [solved]Is there a way to evaluate a method in a string?
Replies: 4
Views: 525

Re: Is there a way to evaluate a method in a string?

Thank you very much for your help.
I ended up using the @property tag, since direct access resulted in something like <bound method at memory location>. But this works fine now.
by Ireallydunno
Sat Sep 01, 2018 10:06 am
Forum: Ren'Py Questions and Announcements
Topic: [solved]Is there a way to evaluate a method in a string?
Replies: 4
Views: 525

[solved]Is there a way to evaluate a method in a string?

Hello everyone, I had a lot of grieve today trying to get something like: "String representation of an object: [object.get_string()]" to work. Unfortunately this seems impossible since it produces an AttributeError: 'Object' object has no attribute 'get_string()', even though everything is...