예제 #1
0
        private void testSingle(bool auto = false)
        {
            var circle = new SolosuByteObject
            {
                StartTime = Time.Current + 1000,
                Lane      = 0,
                NoteColor = Color4.Orange,
            };

            circle.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty {
            });

            var drawable = CreateDrawableTapNote(circle, auto);

            Add(drawable);
        }
예제 #2
0
 public TestDrawableByteObject(SolosuByteObject h, bool auto)
     : base(h)
 {
     this.auto = auto;
 }
예제 #3
0
 protected virtual TestDrawableByteObject CreateDrawableTapNote(SolosuByteObject circle, bool auto) => new TestDrawableByteObject(circle, auto)
 {
     Anchor = Anchor.Centre,
     Origin = Anchor.Centre,
     Depth  = depthIndex++,
 };