public void ReleaseFB()
 {
     if (fbAsyncLoader != null)
     {
         fbAsyncLoader.Dispose();
         fbAsyncLoader = null;
     }
 }
 public FBAsyncLoader LoadFBAsync(string fbLabel)
 {
     fbAsyncLoader = FBAsyncLoader.Get();
     fbAsyncLoader.Init(fbLabel);
     return fbAsyncLoader;
 }