arcade icon indicating copy to clipboard operation
arcade copied to clipboard

Need text outline.

Open wijat opened this issue 6 months ago • 1 comments

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.

wijat avatar Jun 02 '25 03:06 wijat

There's text outline support in pyglet in the future (SDF text). We'll wait for that.

einarf avatar Jun 14 '25 18:06 einarf