/// <summary>
 /// Release scene
 /// </summary>
 /// <param name="scene">The SceneInstance to release.</param>
 /// <param name="autoReleaseHandle">If true, the handle will be released automatically when complete.</param>
 /// <returns>The operation handle for the request.</returns>
 public static AsyncOperationHandle <SceneInstance> UnloadScene(SceneInstance scene, bool autoReleaseHandle = true)
 {
     return(m_Addressables.UnloadScene(scene, autoReleaseHandle));
 }