Hello. Please help. At first glance, a simple problem, but I can’t solve it for a long time. How to remove this red progress bar when loading the next scene? I’m ok to remove this in whole game, since it is small.
https://drive.google.com/file/d/1wVerjdfmDkYXpvkyHG7RoexBW13S_Vkx/view?usp=sharing
The forum is read-only. New threads, replies and edits are disabled.
How to remove default loading bar between scenes?
Hi Alex
When you call wade.loadScene, the second parameter describes the loading bar. Set it to null or false and it won't be displayed.
wade.loadScene('myScene.wsc', false, function()
{
// the scene has been loaded, do something here
});
Thank you so much for quick response!

