Thank you again for this awesome plugin!
Unfortunately, I can't seem to get it working with LayeredImageProxy. It always gives me one of two errors:
When using outline_transform() directly:
File "game/outline_shader.rpy", line 244, in <module> u_width float(width) ~~~~~^^^^^^^ TypeError: float() argument must be a string or a real number, not 'MultiBox'
When using a transform that makes use of outline_transform():
File "game/outline_shader.rpy", line 247, in <module> u_line_color Color(color).rgba ~~~~~^^^^^^^ TypeError: 'MultiBox' object is not iterable
I got these in a sample project simply by doing:
layeredimage eileen base:
always "eileen.png"
image eileen = LayeredImageProxy("eileen base", [outline_transform()])
I'm happy to provide more detail in case there's a specific part of the error message that would help!