[Unity} How to pop up multiple window with error message.
1. I would like to pop error message window up.
Before I just use one designated 'Error Pop Up Window' and 'SetActive(true)' command.
2. But now I call multiple function with Delegate Chain. If I use only one pop up window and there are multiple error message in miltiple function, that will give me error in my life. So I figured out this "Hmm. Will I instantiate Pop Up window as prefab? " I did but Pop Up window instantiate where I can't see.
public void PopErrInstantiate()
{
GameObject childObject = Instantiate(popErrorPref) as GameObject;
}
3.Then let's make Pop Up window instantiate & let this be the child of main Canvas.
public void PopErrInstantiate(s)
{
GameObject childObject = Instantiate(popErrorPref) as GameObject;
childObject.transform.parent = Ui_ControlUi.BigCanvas.transform;
}
4. OK. Let's destroy this pop up before my game will be stacked withPop Up window object. I put destroy in the close funtion that was attached in Close button of Pop Up window.
public void Close()
{
GameObject one = canvas.transform.parent.transform.parent.gameObject;
Destroy(one);
}
Full Code is below
댓글
댓글 쓰기