Renamed What is execution order%3F to /Execution Order
commited
commit
aa8e4d81ffc7549d376a2ba6524ccaa7274a5ac4
... | ... | @@ -0,0 +1,21 @@ |
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). |
|
2 | ||
3 | Thus, a set of scrips arranged in the following order: |
|
4 | ||
5 | ``` |
|
6 | AB |
|
7 | CD |
|
8 | ``` |
|
9 | ||
10 | will be executed as A → B → C → D. |
|
11 | ||
12 | [[https://imgur.com/gkZWtHD.jpg]] |
|
13 | ||
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: |
|
17 | ||
18 | [[https://imgur.com/e0EYbHB.jpg]] |
|
19 | [[https://imgur.com/qsPi1I0.jpg]] |
|
20 | ||
21 | 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 |
... | ... | @@ -1,21 +0,0 @@ |
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). |
|
2 | ||
3 | Thus, a set of scrips arranged in the following order: |
|
4 | ||
5 | ``` |
|
6 | AB |
|
7 | CD |
|
8 | ``` |
|
9 | ||
10 | will be executed as A → B → C → D. |
|
11 | ||
12 | [[https://imgur.com/gkZWtHD.jpg]] |
|
13 | ||
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: |
|
17 | ||
18 | [[https://imgur.com/e0EYbHB.jpg]] |
|
19 | [[https://imgur.com/qsPi1I0.jpg]] |
|
20 | ||
21 | 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 |