Exemple #1
0
        public override void OnResize(int width, int height)
        {
            chat.OnResize(width, height);
            hotbar.Reposition();

            if (playerList != null)
            {
                playerList.Reposition();
            }
        }
Exemple #2
0
        public override void OnResize()
        {
            chat.OnResize();
            hotbar.Reposition();

            if (playerList != null)
            {
                playerList.Reposition();
            }
        }
Exemple #3
0
        public override void OnResize(int width, int height)
        {
            chat.OnResize(width, height);
            hotbar.CalculatePosition();

            if (playerList != null)
            {
                playerList.RecalcYOffset();
                playerList.CalculatePosition();
            }
        }