1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 23:41:19 +08:00

Bypass Parent nullability checks for now

This commit is contained in:
Dean Herbert
2023-10-17 17:40:44 +09:00
Unverified
parent 5833c20be5
commit 5341a335a6
50 changed files with 77 additions and 77 deletions
@@ -169,7 +169,7 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
AddStep($"move mouse to control point {index}", () =>
{
Vector2 position = slider.Path.ControlPoints[index].Position;
InputManager.MoveMouseTo(visualiser.Pieces[0].Parent.ToScreenSpace(position));
InputManager.MoveMouseTo(visualiser.Pieces[0].Parent!.ToScreenSpace(position));
});
}