mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Add property to SkipOverlay
This commit is contained in:
parent
0d73bfa451
commit
6717f0606c
@ -8,6 +8,7 @@ using osu.Framework;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Audio;
|
||||
using osu.Framework.Audio.Sample;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Shapes;
|
||||
@ -40,6 +41,8 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
private bool isClickable;
|
||||
|
||||
public BindableBool IsSkippable = new()!;
|
||||
|
||||
[Resolved]
|
||||
private GameplayClock gameplayClock { get; set; }
|
||||
|
||||
@ -134,6 +137,7 @@ namespace osu.Game.Screens.Play
|
||||
remainingTimeBox.Width = (float)Interpolation.Lerp(remainingTimeBox.Width, progress, Math.Clamp(Time.Elapsed / 40, 0, 1));
|
||||
|
||||
isClickable = progress > 0;
|
||||
IsSkippable.Value = isClickable;
|
||||
button.Enabled.Value = isClickable;
|
||||
buttonContainer.State.Value = isClickable ? Visibility.Visible : Visibility.Hidden;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user