Is there a way to create text in text2d which has an outline, something like the image below? I'm going to go ahead and assume the answer to this is no, in which case, could this possibly be added in the future?
It's nothing really all that important but it fits with the style of what I'm trying to make.
The css solution to this is to use shadows.
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
Whatever the answer may be, thanks for taking the time!