public override void Update()
        {
            var v = Input.GetAxis(this.UnityInputId);

            if (this.Invert)
            {
                v *= -1;
            }
            _current = InputUtil.CutoffAxis(v, this.DeadZone, this.Cutoff);
        }