arcade
arcade copied to clipboard
Need text outline.
Just need this in code
text = arcade.Text(
str(score),
self.position.x, self.position.y,
font_size=22,
font_name=my_font_path,
color=arcade.color.WHITE,
anchor_x="center",
anchor_y="center",
outline = true,
outline_color = arcade.color.DARK_GRAY,
outline_thickness = 1,
)
High-performance text outlining should be integrated into the Arcade.
There's text outline support in pyglet in the future (SDF text). We'll wait for that.