Exemplo n.º 1
0
        public PlaySongSelect()
        {
            Add(modSelect = new ModSelectOverlay
            {
                RelativeSizeAxes = Axes.X,
                Origin           = Anchor.BottomCentre,
                Anchor           = Anchor.BottomCentre,
                Margin           = new MarginPadding {
                    Bottom = 50
                }
            });

            LeftContent.Add(leaderboard = new Leaderboard
            {
                RelativeSizeAxes = Axes.Both,
            });
        }
Exemplo n.º 2
0
        public PlaySongSelect()
        {
            FooterPanels.Add(modSelect = new ModSelectOverlay
            {
                RelativeSizeAxes = Axes.X,
                Origin           = Anchor.BottomCentre,
                Anchor           = Anchor.BottomCentre,
            });

            LeftContent.Add(beatmapDetails = new BeatmapDetailArea
            {
                RelativeSizeAxes = Axes.Both,
                Padding          = new MarginPadding {
                    Top = 10, Right = 5
                },
            });
        }
Exemplo n.º 3
0
        public PlaySongSelect()
        {
            FooterPanels.Add(modSelect = new ModSelectOverlay
            {
                RelativeSizeAxes = Axes.X,
                Origin           = Anchor.BottomCentre,
                Anchor           = Anchor.BottomCentre,
            });

            LeftContent.Add(BeatmapDetails = new BeatmapDetailArea
            {
                RelativeSizeAxes = Axes.Both,
                Padding          = new MarginPadding {
                    Top = 10, Right = 5
                },
            });

            BeatmapDetails.Leaderboard.ScoreSelected += s => Push(new Results(s));
        }