Unity Next Level Screen

Hey guys i am making a Match 3 game like Candy Crush and I am trying to make the screen that pops up when you complete the levels. The Screen gives you the option to go to the next level or back to the main menu. I am not sure what this screen is called but if anyone has any advice on how to make this screen that would be great. I code in C#

You’d normally just display a UI window like any other UI window, with the desired images and buttons. You’d put in code that the buttons call that would change scenes, or whatever mechanism you use for changing levels or returning to the main menu. Any Unity UI tutorial would be fine as long as it is for Unity 4.6 or later (the current UI system was added in Unity 4.6). Note that often the newer Unity UI is referred to as UGUI.

Here’s the documentation for it:
https://docs.unity3d.com/Manual/UISystem.html

Here’s the Unity provided tutorial series for it:

1 Like

Thank you so much this helps alot