Deltarune (Chapter 3) script viewer

← back to main script listing

gml_Object_obj_car_breakable_Other_10

(view raw script w/o annotations or w/e)
1
if (hitted == 0)
2
{
3
    image_speed = 0;
4
    image_index = 1;
5
    hitted = 1;
6
    hspeed = 12;
7
    vspeed = -12;
8
    depth = -999999;
9
    snd_stop(snd_smallcar_yelp);
10
    snd_stop(snd_hitcar_little);
11
    audio_play_sound(snd_smallcar_yelp, 0, 0);
12
    audio_play_sound(snd_hitcar_little, 0, 0);
13
}