Hello. I am sorry, but you did a full game. So I assume that your are skilled…
Then my answer could be just stupid because you know the way to reload a scene.
using UnityEngine.SceneManagement; // for classes
SceneManager.LoadScene(0); // or using a string
SceneManager.LoadScene("yourSpashScreenName");
Ok. Maybe you are right, but it was not very clear. In this case, I recommend to create a last scene with a video. I have no clue how to restart the Unity splash screen.
I used a template to make the game so I am not skilled in programming. And yes Mgear I mean a full application restart to get to the splash screen again… any ideas? thanks
Unity splash screen or some intro? I you want to display again the Unity splash screen, I am afraid that it’s not possible because it means that you restart the process. In contrast, you can load the first scene of your project which is usualy a custom splash screen or a main menu. You have to use the class that I showed you before ++