mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 01:52:55 +08:00
updated bdach's suggestion
This commit is contained in:
parent
3687f830e8
commit
cf7fbf4b63
@ -49,7 +49,7 @@ namespace osu.Game.Rulesets.Osu.Objects
|
||||
|
||||
public virtual Vector2 EndPosition => Position;
|
||||
|
||||
public virtual Vector2 StackedEndPosition => EndPosition + StackOffset;
|
||||
public Vector2 StackedEndPosition => EndPosition + StackOffset;
|
||||
|
||||
public readonly Bindable<int> StackHeightBindable = new Bindable<int>();
|
||||
|
||||
@ -59,7 +59,7 @@ namespace osu.Game.Rulesets.Osu.Objects
|
||||
set => StackHeightBindable.Value = value;
|
||||
}
|
||||
|
||||
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
|
||||
public virtual Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
|
||||
|
||||
public double Radius => OBJECT_RADIUS * Scale;
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace osu.Game.Rulesets.Osu.Objects
|
||||
/// </summary>
|
||||
public int MaximumBonusSpins { get; protected set; } = 1;
|
||||
|
||||
public override Vector2 StackedEndPosition => EndPosition;
|
||||
public override Vector2 StackOffset => Vector2.Zero;
|
||||
|
||||
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user