Hello. If I have an array of objects, how can I modify all elements of the array? Like this "if(something==true){Array.active=false;}
If I’m not mistaken:
if (true){
for (item : typeOfItemsInYourArray in yourArray){
item = true;
}
}
Greetz, Ky.