mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
33 lines
930 B
C#
33 lines
930 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
{
|
|
public class DrawableSwellTick : DrawableTaikoHitObject<SwellTick>
|
|
{
|
|
public override bool DisplayResult => false;
|
|
|
|
public DrawableSwellTick(SwellTick hitObject)
|
|
: base(hitObject)
|
|
{
|
|
}
|
|
|
|
protected override void UpdateInitialTransforms() => this.FadeOut();
|
|
|
|
public void TriggerResult(HitResult type)
|
|
{
|
|
HitObject.StartTime = Time.Current;
|
|
ApplyResult(r => r.Type = type);
|
|
}
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
|
{
|
|
}
|
|
|
|
public override bool OnPressed(TaikoAction action) => false;
|
|
}
|
|
}
|