Fix metrics not matching between skins and lazer

This commit is contained in:
Dean Herbert
2020-02-17 19:16:40 +09:00
parent 2133ba38e5
commit 89bff32274
5 changed files with 25 additions and 9 deletions

View File

@ -10,7 +10,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
public DrawableTinyDroplet(TinyDroplet h)
: base(h)
{
Size = new Vector2((float)CatchHitObject.OBJECT_RADIUS) / 8;
Size = new Vector2(CatchHitObject.OBJECT_RADIUS / 8);
}
}
}