mirror of
https://github.com/ppy/osu.git
synced 2025-03-05 10:53:10 +08:00
Add some comments
This commit is contained in:
parent
bb046fa3b8
commit
c08130398c
@ -92,6 +92,9 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
private set => Body.AnimationState.Value = value;
|
private set => Body.AnimationState.Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether the catcher is currently dashing.
|
||||||
|
/// </summary>
|
||||||
public bool Dashing { get; set; }
|
public bool Dashing { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -17,6 +17,10 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class CatcherTrailDisplay : CompositeDrawable
|
public class CatcherTrailDisplay : CompositeDrawable
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The most recent dash trail added in this container.
|
||||||
|
/// Only alive (not faded out) trails are considered.
|
||||||
|
/// </summary>
|
||||||
[CanBeNull]
|
[CanBeNull]
|
||||||
public CatcherTrail LastDashTrail => dashTrails.Concat(hyperDashTrails)
|
public CatcherTrail LastDashTrail => dashTrails.Concat(hyperDashTrails)
|
||||||
.OrderByDescending(trail => trail.LifetimeStart)
|
.OrderByDescending(trail => trail.LifetimeStart)
|
||||||
|
Loading…
Reference in New Issue
Block a user