-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #364 from peppy/general-fixes
Design improvements
- Loading branch information
Showing
8 changed files
with
56 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
// Copyright (c) 2007-2017 ppy Pty Ltd <[email protected]>. | ||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE | ||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE | ||
|
||
using OpenTK; | ||
using OpenTK.Graphics; | ||
using System; | ||
using osu.Framework.Allocation; | ||
using osu.Framework.Configuration; | ||
using osu.Framework.Graphics; | ||
using osu.Framework.Graphics.Containers; | ||
using osu.Framework.Graphics.Sprites; | ||
using osu.Framework.Graphics.Transformations; | ||
using System; | ||
using osu.Game.Graphics; | ||
using OpenTK; | ||
using OpenTK.Graphics; | ||
|
||
namespace osu.Game.Modes.UI | ||
{ | ||
public class HealthDisplay : Container | ||
{ | ||
private Box background; | ||
private Box fill; | ||
private Container fill; | ||
|
||
public BindableDouble Current = new BindableDouble() { MinValue = 0, MaxValue = 1 }; | ||
public BindableDouble Current = new BindableDouble() | ||
{ | ||
MinValue = 0, | ||
MaxValue = 1 | ||
}; | ||
|
||
public HealthDisplay() | ||
{ | ||
|
@@ -26,19 +32,38 @@ public HealthDisplay() | |
background = new Box | ||
{ | ||
RelativeSizeAxes = Axes.Both, | ||
Colour = Color4.Gray, | ||
Colour = Color4.Black, | ||
}, | ||
fill = new Box | ||
fill = new Container | ||
{ | ||
RelativeSizeAxes = Axes.Both, | ||
Colour = Color4.White, | ||
Scale = new Vector2(0, 1), | ||
}, | ||
Masking = true, | ||
Children = new[] | ||
{ | ||
new Box | ||
{ | ||
RelativeSizeAxes = Axes.Both, | ||
} | ||
} | ||
}, | ||
}; | ||
|
||
Current.ValueChanged += current_ValueChanged; | ||
} | ||
|
||
[BackgroundDependencyLoader] | ||
private void laod(OsuColour colours) | ||
{ | ||
fill.Colour = colours.BlueLighter; | ||
fill.EdgeEffect = new EdgeEffect | ||
{ | ||
Colour = colours.BlueDarker.Opacity(0.6f), | ||
Radius = 8, | ||
Type= EdgeEffectType.Glow | ||
}; | ||
} | ||
|
||
private void current_ValueChanged(object sender, EventArgs e) | ||
{ | ||
fill.ScaleTo(new Vector2((float)Current, 1), 200, EasingTypes.OutQuint); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters