Hello, I have the following problem. If I use the code to activate the canvas on which there are buttons, they cannot be used. In the event handler inspector, the button is not even recognized. The problem occurs when i used below mentioned code. No buttons can be used on the opened second page. (all inspector settings are correct, checked it several times)
public Button Button2; //the button on page 2 which cannot be used
public void toSecondScreen()
{
superFalse();
SecondScreen.SetActive(true);
}
public void superFalse()
{
FirstScreen.SetActive(false);
SecondScreen.SetActive(false);
}