1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Add the ability to make DrawableHitObjects non-interactive (for use in other contexts).

This commit is contained in:
Dean Herbert 2017-02-14 17:52:53 +09:00
parent 396c8121d3
commit 8e9a5e9faa

View File

@ -19,6 +19,10 @@ namespace osu.Game.Modes.Objects.Drawables
{
public event Action<DrawableHitObject, JudgementInfo> OnJudgement;
public override bool HandleInput => Interactive;
public bool Interactive = true;
public Container<DrawableHitObject> ChildObjects;
public JudgementInfo Judgement;