Pixel-Composer/scripts/__tiler_tool/__tiler_tool.gml

17 lines
438 B
Text
Raw Normal View History

2025-01-02 08:54:31 +01:00
function tiler_tool(_node) constructor {
node = _node;
subtool = 0;
2024-10-16 12:34:26 +02:00
brush_resizable = true;
apply_draw_surface = noone;
drawing_surface = noone;
preview_draw_mask = noone;
tile_size = [ 1, 1 ];
static init = function() {}
static step = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {}
static drawPreview = function() {}
static drawMask = function() {}
}