Pixel-Composer/scripts/__init_global/__init_global.gml
2023-02-14 08:48:33 +07:00

10 lines
206 B
Plaintext

function __init_global() {
gml_pragma( "global", "__init_global();");
// set any global defaults
layer_force_draw_depth(true,0); // force all layers to draw at depth 0
draw_set_colour( c_black );
}