| 1 | if (cutscene_key_prompt()) |
| 2 | { |
| 3 | if (fade_out == false) |
| 4 | fade_out = true; |
| 5 | } |
| 6 | if (fade_out == true) |
| 7 | { |
| 8 | if (image_alpha > 1) |
| 9 | image_alpha -= 0.15; |
| 10 | else |
| 11 | instance_destroy(); |
| 12 | } |