mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 06:56:45 +01:00
23 lines
455 B
Text
23 lines
455 B
Text
function draw_text_over(_x, _y, _text) {
|
|
BLEND_OVERRIDE;
|
|
draw_text(_x, _y, _text);
|
|
BLEND_NORMAL;
|
|
}
|
|
|
|
function draw_text_ext_over(_x, _y, _text, _sep, _w) {
|
|
BLEND_OVERRIDE;
|
|
draw_text_ext(_x, _y, _text, _sep, _w);
|
|
BLEND_NORMAL;
|
|
}
|
|
|
|
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;
|
|
}
|