1 | function cutscene_instance_position(argument0, argument1, argument2, argument3) //gml_Script_cutscene_instance_position |
2 | { |
3 | if (argument1 == "x") |
4 | { |
5 | if (argument2 == ">") |
6 | { |
7 | if (argument0.x >= argument3) |
8 | { |
9 | cutscene_advance() |
10 | return true; |
11 | } |
12 | } |
13 | if (argument2 == "<") |
14 | { |
15 | if (argument0.x <= argument3) |
16 | { |
17 | cutscene_advance() |
18 | return true; |
19 | } |
20 | } |
21 | } |
22 | if (argument1 == "y") |
23 | { |
24 | if (argument2 == ">") |
25 | { |
26 | if (argument0.y >= argument3) |
27 | { |
28 | cutscene_advance() |
29 | return true; |
30 | } |
31 | } |
32 | if (argument2 == "<") |
33 | { |
34 | if (argument0.y <= argument3) |
35 | { |
36 | cutscene_advance() |
37 | return true; |
38 | } |
39 | } |
40 | } |
41 | return false; |
42 | } |