private void Update()
        {
            for (int i = m_ActiveCharKeyItems.Count - 1; i >= 0; i--)
            {
                CharKeyItem displayItem = m_ActiveCharKeyItems[i];
                if (displayItem.Refresh())
                {
                    continue;
                }

                //HideCharKey(displayItem);
            }
        }