How to remove default loading bar between scenes?
Alex

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

All 2 Comments
Gio

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
});

 

Alex

Thank you so much for quick response!

Post a reply
Add Attachment
Submit Reply
Login to Reply