You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
time += 0.05
|
|
if (time > 9999999)
|
|
time = 0
|
|
image_blend = make_color_rgb((max(sin(time), 0) * 255), 0, 0)
|
|
if fadeout
|
|
{
|
|
if (sin(time) < 0.1)
|
|
instance_destroy()
|
|
}
|