GUI Loading and Downloading bar

I have currently implemented addressable into my project and got it loading scenes. I am now stuck as to how I can display this as a percentage on the front end for my users. Any help would be awesome :slight_smile:

Use PercentComplete attribute in your AsyncOperationHandle

For eg:

 void Update()
    {
        if(isDownloadStarted)
             Debug.Log("ADDRESSABLES PERCENTAGE" + currentOperationHandle.PercentComplete);
    }