mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-10 12:16:24 +01:00
36 lines
No EOL
632 B
Text
36 lines
No EOL
632 B
Text
function canvas_tool() constructor {
|
|
|
|
node = noone;
|
|
|
|
override = false;
|
|
relative = false;
|
|
|
|
relative_position = [ 0, 0 ];
|
|
drawing_surface = noone;
|
|
_canvas_surface = noone;
|
|
apply_draw_surface = noone;
|
|
|
|
brush_resizable = false;
|
|
mouse_holding = false;
|
|
|
|
subtool = 0;
|
|
|
|
function init() {}
|
|
|
|
function step(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
|
|
}
|
|
|
|
function drawPreview(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
|
|
}
|
|
|
|
function drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
|
|
}
|
|
|
|
function drawPostOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
|
|
}
|
|
|
|
} |