mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
11 lines
216 B
Plaintext
11 lines
216 B
Plaintext
function draw_text_add(_x, _y, _text){
|
|
BLEND_OVER
|
|
draw_text(_x, _y, _text);
|
|
BLEND_NORMAL
|
|
}
|
|
|
|
function draw_text_ext_add(_x, _y, _text, _sep, _w){
|
|
BLEND_OVER
|
|
draw_text_ext(_x, _y, _text, _sep, _w);
|
|
BLEND_NORMAL
|
|
} |