Example #1
0
        public override void OnMouseEnter()
        {
            foreach (PlayerLocationIndicator indicator in startingLocationIndicators)
            {
                indicator.BackgroundShown = true;
            }

            if (Map != null && !string.IsNullOrEmpty(Map.Briefing))
            {
                briefingBox.SetFadeVisibility(false);
            }
            else
            {
                briefingBox.Disable();
            }

            base.OnMouseEnter();
        }