Update framework

This commit is contained in:
Dean Herbert
2018-06-03 02:28:11 +09:00
parent 88628812c6
commit 64eda27547
6 changed files with 11 additions and 11 deletions

View File

@ -59,9 +59,9 @@ namespace osu.Game.Tests.Visual
Clock.ProcessFrame();
}
protected override bool OnWheel(InputState state)
protected override bool OnScroll(InputState state)
{
if (state.Mouse.WheelDelta > 0)
if (state.Mouse.ScrollDelta.Y > 0)
Clock.SeekBackward(true);
else
Clock.SeekForward(true);