Post a message
Replying to:
List Variables
11 June 2020
List Variables are similar to Local Variables in that their scope is limited to the scene they are at. Instead of accessing the Variables by name, you can access them by index.
(List Variables example with 3 elements) Items can be inserted and removed at any position. They are very useful when you want to stack a bunch of game objects (or any supported data) and do something with them, without having to worry about how many elements you have stored.
For example, you can have a SIM game (...)