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