Pixel-Composer/scripts/__atlas/__atlas.gml

10 lines
284 B
Plaintext
Raw Normal View History

2023-03-19 09:17:39 +01:00
function spriteAtlasData(x = 0, y = 0, w = 1, h = 1, surface = noone, index = 0) constructor {
self.surface = surface;
self.index = index;
self.x = x;
self.y = y;
self.w = w;
self.h = h;
static clone = function() { return new spriteAtlasData(x, y, w, h, surface, index); }
}