- May 22, 2022
- 210
- 1,249
Can I somehow use the Ren'Py side image tagging system to format my text automatically w/o having to write the format in every sentence.
a "Hi"
a "*{i}Hi{/i}*"
Example... say I have character Agnes. Agnes can think, shout, whisper or talk.
I usually write like this:
define a = Character("Agnes"..., image="mood")
a "Hi" # say
a thinks "Gosh... look at this guy." # thinks
a whispers "I am sorry.." # whispers
I have side images for "mood" (bubble, think bubble, whisper bubble, etc). But that is an issue since the bubbles have a color and depending on the scene are not that visible.
I'd like to detect in the say screen that I tag the text as thinks and assign a different style, for instance italics. Smaller / Bigger font, etc depending on whisper / shout.
I know I can modify the Ren'Py engine, but I'd rather prefer doing something in the provided game rpy.
Any ideas ?
a "Hi"
a "*{i}Hi{/i}*"
Example... say I have character Agnes. Agnes can think, shout, whisper or talk.
I usually write like this:
define a = Character("Agnes"..., image="mood")
a "Hi" # say
a thinks "Gosh... look at this guy." # thinks
a whispers "I am sorry.." # whispers
I have side images for "mood" (bubble, think bubble, whisper bubble, etc). But that is an issue since the bubbles have a color and depending on the scene are not that visible.
I'd like to detect in the say screen that I tag the text as thinks and assign a different style, for instance italics. Smaller / Bigger font, etc depending on whisper / shout.
I know I can modify the Ren'Py engine, but I'd rather prefer doing something in the provided game rpy.
Any ideas ?