MenuButton.UpElementCount C# (CSharp) Метод

UpElementCount() публичный Метод

Sets the element count to elementCount + 1.
public UpElementCount ( ) : void
Результат void
    public void UpElementCount()
    {
        if (ElementCount == 0)
        {
            SetOnSprite();
            SpawnUIDraggableElement();
        }
        ++ElementCount;
        SetElementCountToText();
    }