示例#1
0
        protected override bool IsOccuringThisFrameInternal(GamepadComponent_Stick stick)
        {
            if (stick.IsStickGestureOccuringThisFrame(gesture))
            {
                return(true);
            }

            return(false);
        }
示例#2
0
 protected abstract bool IsOccuringThisFrameInternal(GamepadComponent_Stick stick);
示例#3
0
 static public bool IsStickGestureOccuringThisFrame(this GamepadComponent_Stick item, GamepadStickGesture gesture)
 {
     return(item.GetHistory().IsStickGestureOccuringThisFrame(gesture));
 }