Fix dropped input outside of playfield.

This commit is contained in:
Thomas Müller 2016-12-11 10:09:58 +01:00
parent 2ced0a48e0
commit 882d5edf7d
1 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,8 @@ public Playfield()
public class ScaledContainer : Container
{
protected override Vector2 DrawScale => new Vector2(DrawSize.X / 512);
public override bool Contains(Vector2 screenSpacePos) => true;
}
public class HitObjectContainer : Container<DrawableHitObject>