public TestSceneCatchSkinConfiguration()
 {
     Add(droppedObjectContainer = new DroppedObjectContainer());
     Add(container = new Container {
         RelativeSizeAxes = Axes.Both
     });
 }
Exemplo n.º 2
0
 public TestSceneCatcher()
 {
     Add(trailContainer = new Container
     {
         Anchor = Anchor.Centre,
         Depth  = -1
     });
     Add(droppedObjectContainer = new DroppedObjectContainer());
 }
Exemplo n.º 3
0
            public TestCatcherArea(IBeatmapDifficultyInfo beatmapDifficulty)
            {
                var droppedObjectContainer = new DroppedObjectContainer();

                Add(droppedObjectContainer);

                Catcher = new Catcher(droppedObjectContainer, beatmapDifficulty)
                {
                    X = CatchPlayfield.CENTER_X
                };
            }
Exemplo n.º 4
0
        public void SetUp() => Schedule(() =>
        {
            var difficulty = new BeatmapDifficulty
            {
                CircleSize = 0,
            };

            droppedObjectContainer = new DroppedObjectContainer();

            Child = new Container
            {
                Anchor   = Anchor.Centre,
                Children = new Drawable[]
                {
                    droppedObjectContainer,
                    catcher = new TestCatcher(droppedObjectContainer, difficulty),
                }
            };
        });
Exemplo n.º 5
0
 public TestCatcher(DroppedObjectContainer droppedObjectTarget, BeatmapDifficulty difficulty)
     : base(droppedObjectTarget, difficulty)
 {
 }
Exemplo n.º 6
0
 public TestCatcherArea(BeatmapDifficulty beatmapDifficulty)
     : base(beatmapDifficulty)
 {
     AddInternal(droppedObjectContainer = new DroppedObjectContainer());
 }