outline bug with specific font
Posted: Fri Jan 02, 2015 11:57 am
Hello
I have a bug with the outline of text with a specific font where the dots of the "!" and "?" are not outlined.
The font can be downloaded here:
http://www.dafont.com/fr/vinegar.font
An a script.rpy testcase:
I have a bug with the outline of text with a specific font where the dots of the "!" and "?" are not outlined.
The font can be downloaded here:
http://www.dafont.com/fr/vinegar.font
An a script.rpy testcase:
Code: Select all
define e = Character('Eileen', color="#c8ffc8")
init python:
style.default.font = "Vinegar-Regular.otf"
# style.default.antialias = True
style.default.outlines = [(1,"#ff0000")]
label start:
e "test1 ! ? . i ok "
"test1 ! ? . i ok "
jump start
return