Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_teacup_reverser_Collision_obj_mainchara

(view raw script w/o annotations or w/e)
1
var _teacups = obj_teacup;
2
if (!is_undefined(specificTeacup))
3
    _teacups = specificTeacup;
4
with (_teacups)
5
{
6
    reverse = true;
7
    tutorialRide = false;
8
    y = endY;
9
    with (obj_teacup_bullet)
10
    {
11
        if (master == other.id)
12
            instance_destroy();
13
    }
14
}