Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_mice3_tempBridge_Step_0

(view raw script w/o annotations or w/e)
1
if (activeDecay == 1)
2
{
3
    if (!place_meeting(x, y, obj_noelle_scared))
4
        activeDecay = 2;
5
}
6
if (activeDecay == 2)
7
{
8
    image_alpha *= 0.9;
9
    if (image_alpha < 0.01)
10
        instance_destroy();
11
}