Exemple #1
0
            public static void BackLogTextBack(ref KeyInput.Data __result)
            {
                if (_disabled)
                {
                    return;
                }

                if (GamepadWhisperer.RightStickDown() && WithinAngle(GamepadWhisperer.GetRightStickAngle(), 180))
                {
                    __result.isKey = true;
                }
            }
Exemple #2
0
            public static bool BackLogTextPageBackHook(ref bool __result)
            {
                if (_disabled)
                {
                    return(true);
                }

                if (GamepadWhisperer.RightStickDown() && WithinAngle(GamepadWhisperer.GetRightStickAngle(), -90))
                {
                    __result = true;
                    return(false);
                }

                return(true);
            }