Is there a way to make a loading screen with progress bar ?

So in fact there is a simple function available in C++

   GetAsyncLoadPercentage(FName& packageName)

The only thing is :

  • when you call it, it locks the currently async loading
  • It’s only for the current package and not it’s dependencies
  • Reaaaaally heavy

There is an example here : https://gist.github.com/looterz/27d3fff244d0669b499bc057a913fb16

I’m trying to export it into a module. I will post the code later.

Best regards everyone