gmc-jam-3/objects/object26/Draw_0.gml

11 lines
185 B
Plaintext
Raw Normal View History

if tickers > 0
{
draw_set_color(c_white)
draw_set_alpha(tickers/100)
draw_rectangle(-1,-1,1024,768,false);
tickers -= 1
}
if tickers = 0
instance_destroy();