Thank you very much. I used this and it worked. I spend around 10 hours trying to find a tutorial on this. I needed this for my game. This is in my opinion the #1 tutorial on scene flow and loading screens.
Really helped out, I subbed you. I have a problem that when I click play button the transition happens very quick how do I slow that down, I have tried WaitForSeconds
using System.Collections; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class SceneLoader : MonoBehaviour { public GameObject loadingScreen; public Slider LoadingBar; public void LoadScene(int Levelindex) { StartCoroutine(LoadSceneAsynchronously(Levelindex)); } IEnumerator LoadSceneAsynchronously(int Levelindex) { AsyncOperation operation = SceneManager.LoadSceneAsync(Levelindex); loadingScreen.SetActive(true); while (!operation.isDone) { LoadingBar.value = operation.progress; yield return null; } } }
Thank you very much. I used this and it worked. I spend around 10 hours trying to find a tutorial on this. I needed this for my game. This is in my opinion the #1 tutorial on scene flow and loading screens.
Another amazing tutorial 👏👏
Thanks,
thank you so much, i couldn't understand other tutorial videos until i find this
Thanks,
Thanks! This was straight to the point and super helpful!
I am very glad to see 👀 your comment
You might be the next brackeys very soon 🙃
:))
Your tutorials are so easy to understand
Thanks 😊
Broooo you made is soooo easy.
Subscribed💪
Thanks 😊
This guy deserves a millions subscriber try to also put more 3d tutorial and also more content about mobile :)
Thanks 😊
@@retrogamer947 yep
So clear and easy to follow. Thank you!!!!!
I appreciate that
Thanks
thx bro i have being looking for the perfect tutorial thankyou :)
No worries
you're the boss! subscribed!
How do you make the loading screen a bit slower?
Beautiful Tut! 👍
Thanks 😊
Really helped out, I subbed you. I have a problem that when I click play button the transition happens very quick how do I slow that down, I have tried WaitForSeconds
İt was a verry helpfull video thx
No worries 👍
Please make a tutorial on ammo and gun pick up
I like you video. And thanks for help....
Happy to help
What about a loading screen where you press a button after it has been loaded before switching to it.
Very useful thanks 👏
You got a sub
Welcome to the channel
Tysm!
hey please make fast video because
i want to publish my game on play store..,
(how to proper build game for play store ??)...
good video, but mine didnt work.. i dont know why i followed everything like you said.. please help me out
Make videos about multiplayer game... please 🖤
Thenks bro ❤
No worries
my debug is not showing anything, pls help me
im having alot of errors mind if i have the script?
Thanks you
No problem
using System.Collections;
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
public class SceneLoader : MonoBehaviour
{
public GameObject loadingScreen;
public Slider LoadingBar;
public void LoadScene(int Levelindex)
{
StartCoroutine(LoadSceneAsynchronously(Levelindex));
}
IEnumerator LoadSceneAsynchronously(int Levelindex)
{
AsyncOperation operation = SceneManager.LoadSceneAsync(Levelindex);
loadingScreen.SetActive(true);
while (!operation.isDone)
{
LoadingBar.value = operation.progress;
yield return null;
}
}
}
when are you going to make video on that robot
plzzzz.....
Hi I ❤ your tutorials. Can you make a video if we click play button it load random level. please make a video...
Thanks :)
how to proper build game for play store ??
(make full tutorial video)
Ok, soon
@@GDTitans thanks
@@GDTitans hey please make fast video because
i want to publish my game on play store.
(how to proper build game for play store ??)
The script please
nice
Sir game over screen please make and make game over to main menu
my debug is just give progress once
It depends on the game and how big the level.