Beispiel #1
0
        void HideText(bool permanent = false)
        {
            if (text != null)
            {
                text.Visible = false;

                if (permanent)
                {
                    text.DeleteMessage();
                    text = null;
                }
            }

            SetUpdateMethods(UpdateFlags.UPDATE_INPUT, false);
        }