Fix notes travelling backwards when hit.

Also improves the gravity curve.
This commit is contained in:
Dean Herbert
2017-04-05 15:11:51 +09:00
parent 28648bf97d
commit 57a068c5d1
2 changed files with 10 additions and 6 deletions

View File

@ -71,7 +71,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawables
/// a time value and the HitObject's StartTime.
/// </summary>
/// <param name="time"></param>
protected virtual void UpdateScrollPosition(double time) => MoveToX((float)((HitObject.StartTime - time) / HitObject.ScrollTime));
protected virtual void UpdateScrollPosition(double time) => X = (float)((HitObject.StartTime - time) / HitObject.ScrollTime);
protected override void Update()
{