diff --git a/osu-framework b/osu-framework index 1a521bb22c..71bbc98060 160000 --- a/osu-framework +++ b/osu-framework @@ -1 +1 @@ -Subproject commit 1a521bb22cfd2c14f58d4cd60fbbfdb70ea8f87b +Subproject commit 71bbc980602829cf7eb0db537ebaa2f9668acda5 diff --git a/osu.Game/Graphics/Containers/ParallaxContainer.cs b/osu.Game/Graphics/Containers/ParallaxContainer.cs index 52029dbf8e..cf61529cd2 100644 --- a/osu.Game/Graphics/Containers/ParallaxContainer.cs +++ b/osu.Game/Graphics/Containers/ParallaxContainer.cs @@ -25,18 +25,20 @@ namespace osu.Game.Graphics.Containers } private Container content; + private InputManager input; protected override Container Content => content; - protected override bool OnMouseMove(InputState state) + [BackgroundDependencyLoader] + private void load(UserInputManager input) { - content.Position = (state.Mouse.Position - DrawSize / 2) * ParallaxAmount; - return base.OnMouseMove(state); + this.input = input; } protected override void Update() { base.Update(); + content.Position = (ToLocalSpace(input.CurrentState.Mouse.NativeState.Position) - DrawSize / 2) * ParallaxAmount; content.Scale = new Vector2(1 + ParallaxAmount); } }