localize attachments + manual of style
commited
commit
734d88364a90ad3ae5020e32044ee5b3decf9e90
... | ... | @@ -7,7 +7,7 @@ Input: |
7 | 7 | - Index: Every value in a list is assigned an index (think of it as an ID number). We plug an index to get value from the list with the assigned index. |
8 | 8 | |
9 | 9 | Output: |
10 | - Elements: Outputs the value from the list with the index. It can also be used with [[Set Reference]] to set the value for that index. |
|
10 | - Elements: Outputs the value from the list with the index. It can also be connected with the Variable input of [[Set Reference]] to set the value for that index. |
|
11 | 11 | |
12 | 12 | ## Notes |
13 | 13 | |
... | ... | @@ -35,4 +35,16 @@ Lists are like variables, but they can store more values in one, so we just have |
35 | 35 | |
36 | 36 | [[/uploads/Screenshot_20210107-121128_Fancade.jpg]] |
37 | 37 | |
38 | Next thing we have to do is run the script for every bullet with a [[loop]]. We plug the Counter output of the loop into the Index input of our lists, so that we could access each index and the values one by one. The script runs for every bullet and our problem is solved! |
|
... | ... | \ No newline at end of file |
0 | Next thing we have to do is run the script for every bullet with a [[loop]]. We plug the Counter output of the loop into the Index input of our lists, so that we could access each index and the values one by one. The script runs for every bullet and our problem is solved! |
|
1 | ||
2 | ---- |
|
3 | ||
4 | Here is a simpler example that demonstrates how to create multiple objects and process them all at once: |
|
5 | ||
6 | [[/uploads/818666383796731924-image0.png]] |
|
7 | ||
8 | By storing every object in a list to their respective indices, you can loop from 0 to the list's length amount of times, using the current index to get the current object from the list to be processed. |
|
9 | ||
10 | ## Related |
|
11 | ||
12 | - [[Set Reference]] |
|
... | ... | \ No newline at end of file |