Skip to content

Commit 83d35c5

Browse files
committed
Update draw_outlined_text.gml
1 parent d0dfcd7 commit 83d35c5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Drawing/draw_outlined_text.gml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,11 @@ var _alpha = argument[9];
2424
var _fidelity = argument[10];
2525

2626
draw_set_color(_out_color);
27-
for (var i=0; i<360; i+=360/_fidelity)
28-
draw_text(_x + lengthdir_x(1, i),
29-
_y + lengthdir_y(1, i),
30-
_str);
27+
28+
for (var i=0; i<360; i+=360/_fidelity) {
3129
draw_text_transformed_color(_x + lengthdir_x(_out_width * _xscale, i),
3230
_y + lengthdir_y(_out_width * _yscale, i),
3331
_str,_xscale,_yscale,_angle,_out_color,_out_color,_out_color,_out_color,_alpha);
34-
32+
}
33+
3534
draw_text_transformed_color(_x,_y,_str,_xscale,_yscale,_angle,_in_color,_in_color,_in_color,_in_color,_alpha);

0 commit comments

Comments
 (0)