mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
10 lines
206 B
Plaintext
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 );
|
||
|
|
||
|
|
||
|
}
|