Hi, I’m trying to change the color on some sprites so they’re transparent.
I’m doing it with this code:
public List<GameObject> redFloorList;
for(int i = 0; i < redFloorList.Count; i++)
{
//Trying to change the color here
redFloorList*.collider.isTrigger = false;*
}
Does anyone know how to do this?