hideAtlas method

void hideAtlas()

Implementation

void hideAtlas(){
  for(int i = 0; i < objects.length;i++){
    if(objects[i].type == SelectedType.atlas){
      objects[i].visible = false;
    }
  }
}