Пример #1
0
    public void deactivateCountry()
    {
        if (currentCountryTarget == null)
        {
            return;
        }

        if (this.currentCountryTarget != null)
        {
            this.currentCountryTarget.blink = false;
        }
        currentCountryTarget.target();
        currentCountryTarget.StartCoroutine(currentCountryTarget.wait());
        currentCountryTarget = null;
    }