protected virtual void OnDestroy()
 {
     tryToStopLoadingPreview();
     if (_linkPreviewLoader != null)
     {
         _linkPreviewLoader.Destroy();
     }
     _button.onClick.RemoveListener(onClick);
 }
Пример #2
0
 private void destroyLoaders()
 {
     if (_linkPreviewLoader != null)
     {
         _linkPreviewLoader.Destroy();
     }
     if (_remoteImageLoader != null)
     {
         _remoteImageLoader.Destroy();
     }
 }