protected ResourceCommandDescriptionBase(string a_name, string a_commandImagePostfix = null) :
            base(a_name)
        {
            CommandImagePostfix = a_commandImagePostfix;

            ResetValues();

            CultureChangedWeakEventManager.AddListener(this);
        }
Example #2
0
        private void InitializeValue()
        {
            if (m_isInitialized)
            {
                return;
            }

            ResetValues();
            CultureChangedWeakEventManager.AddListener(this);

            m_isInitialized = true;
        }