Pixel-Composer/scripts/surface_get_palette/surface_get_palette.gml

7 lines
114 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
function surface_get_palette(surface, amo){
if(!is_surface(surface)) return -1;
var pal = [];
return pal;
}