eternal-space/objects/obj_dust/Step_0.gml

7 lines
156 B
Plaintext
Raw Normal View History

2021-08-02 13:17:58 -04:00
/// @description Insert description here
// You can write your code in this editor
image_alpha -= 0.01;
if(image_alpha <= 0){
instance_destroy();
2021-08-01 20:37:02 -04:00
};