mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Change initial health to 1 to avoid false fail display
This commit is contained in:
@ -42,6 +42,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
{
|
{
|
||||||
boxes = new Container
|
boxes = new Container
|
||||||
{
|
{
|
||||||
|
Alpha = 0,
|
||||||
Blending = BlendingParameters.Additive,
|
Blending = BlendingParameters.Additive,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
|
@ -14,7 +14,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class HealthDisplay : Container
|
public abstract class HealthDisplay : Container
|
||||||
{
|
{
|
||||||
public readonly BindableDouble Current = new BindableDouble
|
public readonly BindableDouble Current = new BindableDouble(1)
|
||||||
{
|
{
|
||||||
MinValue = 0,
|
MinValue = 0,
|
||||||
MaxValue = 1
|
MaxValue = 1
|
||||||
|
Reference in New Issue
Block a user