Howdy folks!
I'm having some trouble with using arrays with containers.
Here's what the manual states:
"It's possible to add data storage objects like Array and Dictionary to a container with another object. Despite the fact these objects are invisible, a separate instance of the object is still created for each container. This allows you to have a dedicated Array or Dictionary for each instance of an object. This can be very useful as an advanced substitute for instance variables, such as if a very large number of variables is necessary, or if variables need to be dynamically added and removed."
But I've found this to be untrue. When I add an Array to a container, it doesn't automatically instantiate/destroy new copies of that array when the container object is created/destroyed.
Has anyone else found issues with this?
Thanks,
Sam