ID:259277
 
If you add the same thing to an object's overlays list twice, does the overlays list contain two copies of that? For example:

(pseudocode)

L = list('a.dmi', 'b.dmi', 'c.dmi')
for(i = 1; i <= 10000; i++)
T.overlays += L[rand(1, 3)]

In other words... would the final overlays list contain 10000 items, or 3? ...Yes, I know that theoretically it could also contain less than 3. :)
On 1/24/01 5:19 pm Guy T. wrote:
If you add the same thing to an object's overlays list twice, does the overlays list contain two copies of that?

Yes. Overlays can be layered multiple times, and the list will reflect this.