mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
HitExplosion -> DrawableOsuJudgementInfo.
This commit is contained in:
parent
02fba000bc
commit
b83db18551
@ -9,9 +9,9 @@ using osu.Game.Modes.Judgements;
|
||||
|
||||
namespace osu.Game.Modes.Osu.Objects.Drawables
|
||||
{
|
||||
public class HitExplosion : DrawableJudgementInfo<OsuJudgementInfo>
|
||||
public class DrawableOsuJudgementInfo : DrawableJudgementInfo<OsuJudgementInfo>
|
||||
{
|
||||
public HitExplosion(OsuJudgementInfo judgement) : base(judgement)
|
||||
public DrawableOsuJudgementInfo(OsuJudgementInfo judgement) : base(judgement)
|
||||
{
|
||||
}
|
||||
|
@ -85,7 +85,7 @@ namespace osu.Game.Modes.Osu.UI
|
||||
|
||||
public override void OnJudgement(DrawableHitObject<OsuHitObject, OsuJudgementInfo> judgedObject)
|
||||
{
|
||||
HitExplosion explosion = new HitExplosion(judgedObject.Judgement)
|
||||
DrawableOsuJudgementInfo explosion = new DrawableOsuJudgementInfo(judgedObject.Judgement)
|
||||
{
|
||||
Origin = Anchor.Centre,
|
||||
Position = judgedObject.HitObject.StackedEndPosition + judgedObject.Judgement.PositionOffset
|
||||
|
@ -58,7 +58,7 @@
|
||||
<Compile Include="Objects\Drawables\Pieces\ExplodePiece.cs" />
|
||||
<Compile Include="Objects\Drawables\Pieces\FlashPiece.cs" />
|
||||
<Compile Include="Objects\Drawables\Pieces\GlowPiece.cs" />
|
||||
<Compile Include="Objects\Drawables\HitExplosion.cs" />
|
||||
<Compile Include="Objects\Drawables\DrawableOsuJudgementInfo.cs" />
|
||||
<Compile Include="Objects\Drawables\Pieces\NumberPiece.cs" />
|
||||
<Compile Include="Objects\Drawables\DrawableSliderTick.cs" />
|
||||
<Compile Include="Objects\Drawables\Pieces\RingPiece.cs" />
|
||||
|
Loading…
Reference in New Issue
Block a user