Answer by Cherno
> As you can see, there is nothing telling it to remove from the blackImages list Wrong. blackImages is a reference to images, so both lists actually reference the same GameObjects. To create two...
View ArticleAnswer by curiouspers
When you do this: images = blackImages; you're making images reference of blackImages, in other words it's one list but two variables pointing to this one list. So, in your case you may replace the...
View ArticleAnswer by Cherno
> As you can see, there is nothing telling it to remove from the blackImages list Wrong. blackImages is a reference to images, so both lists actually reference the same GameObjects. To create two...
View ArticleAnswer by curiouspers
When you do this: images = blackImages; you're making images reference of blackImages, in other words it's one list but two variables pointing to this one list. So, in your case you may replace the...
View Article