open panel on button click unity (unity tutorial)

preview_player
Показать описание
hello guys here is a simple tutorial on how to open panel on button click
subscribe if it helped
Рекомендации по теме
Комментарии
Автор

This Code to Close and open the panel with one button:
public void TogglePanel()
{
if(panel != null)
{

}
}

JeremyMeuche