Fix hold note blueprint placing in the wrong direction

This commit is contained in:
smoogipoo 2019-10-03 18:23:13 +09:00
parent 39369620fa
commit f1ff22cf8b
1 changed files with 3 additions and 0 deletions

View File

@ -103,6 +103,9 @@ protected float PositionAt(double time)
scrollingInfo.TimeRange.Value,
Column.HitObjectContainer.DrawHeight);
if (scrollingInfo.Direction.Value == ScrollingDirection.Down)
pos = Column.HitObjectContainer.DrawHeight - pos;
return applyPositionOffset(Column.HitObjectContainer.ToSpaceOfOtherDrawable(new Vector2(0, pos), Parent), true).Y;
}