示例#1
0
        private void load()
        {
            initialBeatmap = Beatmap.Value;
            initialRuleset = Ruleset.Value;
            initialMods    = Mods.Value.ToList();

            FooterPanels.Add(freeModSelectOverlay);
        }
示例#2
0
        private void load()
        {
            LeftArea.Padding = new MarginPadding {
                Top = Header.HEIGHT
            };

            initialBeatmap = Beatmap.Value;
            initialRuleset = Ruleset.Value;
            initialMods    = Mods.Value.ToList();

            FooterPanels.Add(freeModSelectOverlay);
        }
示例#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
                },
            });
        }
示例#4
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));
        }