Pixel-Composer/scripts/__canvas_tool/__canvas_tool.gml

36 lines
632 B
Plaintext
Raw Normal View History

2024-04-12 11:45:21 +02:00
function canvas_tool() constructor {
node = noone;
2024-04-13 07:32:04 +02:00
override = false;
2024-04-12 11:45:21 +02:00
relative = false;
relative_position = [ 0, 0 ];
drawing_surface = noone;
_canvas_surface = noone;
apply_draw_surface = noone;
brush_resizable = false;
mouse_holding = false;
2024-04-13 07:32:04 +02:00
subtool = 0;
function init() {}
2024-04-12 11:45:21 +02:00
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) {
}
}