mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
18 lines
401 B
Plaintext
18 lines
401 B
Plaintext
function draw_text_delimiter(ch_x, ch_y, _str) {
|
|
var _x = ch_x;
|
|
var _y = ch_y;
|
|
var cc = draw_get_color();
|
|
|
|
for( var i = 1; i <= string_length(_str); i++ ) {
|
|
var ch = string_char_at(_str, i);
|
|
|
|
if(ch == " ") {
|
|
ch = __txtx("delimiter_space", "<space>");
|
|
draw_set_color(COLORS._main_text_sub);
|
|
} else
|
|
draw_set_color(cc);
|
|
|
|
draw_text_add(_x, _y, ch);
|
|
_x += string_width(ch);
|
|
}
|
|
} |