Beispiel #1
0
        public override bool OnPressed(RushAction action)
        {
            if (!action.IsLaneAction())
            {
                return(false);
            }

            if (!LaneMatchesAction(action) || AllJudged)
            {
                return(false);
            }

            if (!CheckHittable(this))
            {
                return(false);
            }

            return(UpdateResult(true));
        }
Beispiel #2
0
 public override bool OnPressed(RushAction action) => action.IsLaneAction() && UpdateResult(true);