I'm trying to make an array of certain tagged objects.
public GameObject wrongButtons;
public void WrongAnswerName ()
{
wrongButtons[] = GameObject.FindGameObjectsWithTag("Wrong Answer");
}
It gives me an error "Identifier expected"
↧