Search found 3 matches

by Martin
Tue Apr 23, 2024 3:22 pm
Forum: Development of Ren'Py
Topic: [special char interpolation]What am I missing?
Replies: 4
Views: 546

Re: [special char interpolation]What am I missing?

So nobody has an idea / workaround for this 'simple' problem :

why renpy.say doesn't work with some escape sequences when normal say works...

Should be easy ! ;)
by Martin
Sun Apr 14, 2024 6:30 am
Forum: Development of Ren'Py
Topic: [special char interpolation]What am I missing?
Replies: 4
Views: 546

Re: [special char interpolation]What am I missing?

Thanks for your answer...but for me it doesn't solve my problem It wasn't a good idea to add (for completude?) the renpy.call case... Real question was why do say and renpy.say have a different behavior regarding special character? My problem is : I'm reading text in a file to display it on the scre...
by Martin
Sat Apr 13, 2024 1:00 pm
Forum: Development of Ren'Py
Topic: [special char interpolation]What am I missing?
Replies: 4
Views: 546

[special char interpolation]What am I missing?

Renpy sdk 8.2.0 Some problem with text interpolation in renpy.say... " %% problem" # Ok -> % problem e "\% problem" # Ok -> % problem label test (mess): "[mess]" return $renpy.call ("test", "%% problem") # ?? -> "%% problem" # but... $renpy...