Too much formatting - hard to read
commited
commit
e6666089945813ad630f79d46f8e0740c3f49d7c
... | ... | @@ -1,19 +1,21 @@ |
1 | [[Click here and read this article in the Wiki with images|https://www.fancade.com/wiki/what_is_execution_order]] |
|
2 | ||
3 | **Execution Order** is something that determines which script is after the current one. In Fancade we follow the execution order **Top to Bottom, Left to Right** (i.e. __The way you read an English Paragraph__) |
|
1 | Execution Order is something that determines which script is after the current one. In Fancade we follow the execution order *"top to bottom, left to right"* (in other words, the way you read this text). |
|
4 | 2 | |
5 | 3 | Thus, a set of scrips arranged in the following order: |
4 | ||
6 | 5 | ``` |
7 | 6 | AB |
8 | 7 | CD |
9 | 8 | ``` |
10 | will be executed as A→B→C→D |
|
9 | ||
10 | will be executed as A → B → C → D. |
|
11 | ||
11 | 12 | [[https://imgur.com/gkZWtHD.jpg]] |
12 | 13 | |
13 | That's helpful, but what if you want to modify it? Here comes **Execution Wires**. Those yellow wires at the top and bottom of some scripts named *Before* and *After* are what we call as Execution Wires. Execution Wires overrides the default Execution Order. |
|
14 | That's helpful, but what if you want to modify it? Here comes *Execution Wires*. Those yellow wires at the top and bottom of some scripts named "Before" and "After" are what we call as execution wires. Execution Wires overrides the default execution order. |
|
15 | ||
16 | Once a script executes according to the default execution order, it'll execute all the scripts connected to it via Execution Wires before moving on the next script. A picture is worth a thousand words. So check these out: |
|
14 | 17 | |
15 | Once a script executes according to the default execution order, __it'll execute all the scripts connected to it via Execution Wires__ before moving on the next script. A picture is worth a thousand words. So check these out: |
|
16 | 18 | [[https://imgur.com/e0EYbHB.jpg]] |
17 | 19 | [[https://imgur.com/qsPi1I0.jpg]] |
18 | 20 | |
19 | Check out some common problems related to execution order [[here|https://www.fancade.com/wiki/what_are_some_common_problems_related_to_execution_order]] |
|
... | ... | \ No newline at end of file |
0 | Check out some common problems related to execution order [[here|what are some common problems related to execution order?]]. |
|
... | ... | \ No newline at end of file |