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.
You might be the next brackeys very soon 🙃
:))
thank you so much, i couldn't understand other tutorial videos until i find this
Thanks,
Another amazing tutorial 👏👏
Thanks,
How do you make the loading screen a bit slower?
Please make a tutorial on ammo and gun pick up
Your tutorials are so easy to understand
Thanks 😊
This guy deserves a millions subscriber try to also put more 3d tutorial and also more content about mobile :)
Thanks 😊
@@retrogamer947 yep
Thanks! This was straight to the point and super helpful!
I am very glad to see 👀 your comment
Broooo you made is soooo easy.
Subscribed💪
Thanks 😊
hey please make fast video because
i want to publish my game on play store..,
(how to proper build game for play store ??)...
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
What about a loading screen where you press a button after it has been loaded before switching to it.
So clear and easy to follow. Thank you!!!!!
I appreciate that
Thanks
good video, but mine didnt work.. i dont know why i followed everything like you said.. please help me out
my debug is not showing anything, pls help me
im having alot of errors mind if i have the script?
thx bro i have being looking for the perfect tutorial thankyou :)
No worries
you're the boss! subscribed!
when are you going to make video on that robot
plzzzz.....
The script please
Make videos about multiplayer game... please 🖤
Beautiful Tut! 👍
Thanks 😊
Hi I ❤ your tutorials. Can you make a video if we click play button it load random level. please make a video...
Thenks bro ❤
No worries
I like you video. And thanks for help....
Happy to help
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;
}
}
}
Tysm!
İt was a verry helpfull video thx
No worries 👍
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 ??)
Sir game over screen please make and make game over to main menu
Very useful thanks 👏
You got a sub
Welcome to the channel
Thanks you
No problem
Thanks :)
nice
my debug is just give progress once
It depends on the game and how big the level.