AddIgnoreKey() public static method

public static AddIgnoreKey ( string key ) : bool
key string
return bool
Ejemplo n.º 1
0
        private void OnDestroy()
        {
            if (viuLogo != null)
            {
                viuLogo = null;
            }

            if (showNewVersion && toggleSkipThisVersion && !string.IsNullOrEmpty(ignoreThisVersionKey))
            {
                showNewVersion = false;
                VIUProjectSettings.AddIgnoreKey(ignoreThisVersionKey);
            }

            if (windowInstance == this)
            {
                windowInstance = null;
            }
        }
 public void DoIgnore()
 {
     VIUProjectSettings.AddIgnoreKey(ignoreKey);
 }