RegisterDownloadDelegate() private method

private RegisterDownloadDelegate ( ScriptableObject d ) : void
d UnityEngine.ScriptableObject
return void
Example #1
0
        public void OnEnable()
        {
            SetMinMaxSizes();
            titleContent = GetLocalizedTitleContent();
            AssetStoreUtils.RegisterDownloadDelegate(this);

            EditorApplication.update += TrackFocusState;
        }
 public void OnEnable()
 {
     this.SetMinMaxSizes();
     base.titleContent = base.GetLocalizedTitleContent();
     AssetStoreUtils.RegisterDownloadDelegate(this);
 }
Example #3
0
 private void OnEnable()
 {
     AssetStoreUtils.RegisterDownloadDelegate(this);
 }
Example #4
0
 public void OnEnable()
 {
     EditorApplication.update = (EditorApplication.CallbackFunction)Delegate.Combine(EditorApplication.update, new EditorApplication.CallbackFunction(this.Update));
     AssetStoreUtils.RegisterDownloadDelegate(this);
 }
Example #5
0
 public void OnEnable()
 {
     EditorApplication.update += Update;
     AssetStoreUtils.RegisterDownloadDelegate(this);
 }
Example #6
0
 public void OnEnable()
 {
     this.SetMinMaxSizes();
     this.titleContent = this.GetLocalizedTitleContent();
     AssetStoreUtils.RegisterDownloadDelegate((ScriptableObject)this);
 }
 private void OnEnable()
 {
     AssetStoreUtils.RegisterDownloadDelegate((ScriptableObject)this);
 }
 public void OnEnable()
 {
     EditorApplication.update += new EditorApplication.CallbackFunction(this.Update);
     AssetStoreUtils.RegisterDownloadDelegate((ScriptableObject)this);
 }