- Jun 12, 2022
- 135
- 186
Here is a predefined style with outlines
It is used like this in screen choice
Basically applying style "choice_index" causes entire text to have outlines. But I want no outlines on the part that has the paranthesis. I tried using text style tags
But this doesn't work since style tags ignore outlines.
See
How do I get some text on the choice screen where one part of the text does have outlines and another part doesn't?
Code:
style choice_index is button_text:
font "fonts/Aero.ttf"
size 21
color "#ffffff"
hover_color "#ffffff"
yoffset 1
xoffset 50
outlines [(1, "#4285f9", 0, 0)]
hover_outlines [(1, "#005dff", 0, 0)]
Code:
text "This is example text (I want the text in these paranthesis to not have outlines)" style "choice_index"
Code:
text "This is example text {=nooutlinestyle}(I want the text in these paranthesis to not have outlines){/}" style "choice_index"
See
You must be registered to see the links
How do I get some text on the choice screen where one part of the text does have outlines and another part doesn't?