Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_battle_enemy_attack_el_bailador_smoke_Other_10

(view raw script w/o annotations or w/e)
1
x += (smoke_speed * smoke_direction);
2
smoke_alpha -= smoke_alpha_dec;
3
if (smoke_alpha <= 0)
4
    instance_destroy();
5
else
6
    image_alpha = stage_master.image_alpha * smoke_alpha;