1 | if (live_call()) |
2 | return global.live_result; |
3 | image_angle = sin(current_time / 300) * 30; |
4 | if (fade) |
5 | { |
6 | if (image_alpha < 1) |
7 | image_alpha += 0.1; |
8 | } |
9 | else if (image_alpha > 0) |
10 | { |
11 | image_alpha -= 0.1; |
12 | } |