private void ShowBlockInfo()
    {
        blockTitle.SetValue(selectedBlock.LocalizedName);
        var modifiersDescriptions = selectedBlock.GetModifiersDescriptions();

        for (int modifierIndex = 0; modifierIndex < modifiersDescriptions.Count; modifierIndex++)
        {
            modifiersTexts[modifierIndex].SetValue(modifiersDescriptions[modifierIndex]);
        }
    }