You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subMenu.Add(newTextMenu.OnOff("Hide Camera Trigger".ToDialogText(),TasHelperSettings.HideCameraTriggers).Change(value =>TasHelperSettings.HideCameraTriggers=value));
subMenu.Add(newTextMenu.OnOff("Hide Camera Trigger".ToDialogText(),TasHelperSettings.HideCameraTriggers).Change(value =>{TasHelperSettings.HideCameraTriggers=value;SimplifiedTrigger.OnHideCameraChange(value);}));
Copy file name to clipboardexpand all lines: Source/Module/TASHelperSettings.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -925,7 +925,7 @@ public bool SettingsHotkeysPressed() {
925
925
Gameplay.ConsoleEnhancement.SetOpenConsole();
926
926
// it's completely ok that this feature is not enabled and people press this key, so there's no warning
927
927
}
928
-
elseif(!OoO_Core.Applied&&(TH_Hotkeys.FrameStepBack.Released||TH_Hotkeys.FrameStepBack.Check&&TH_Hotkeys.OnInterval((int)Math.Round(4/TasSettings.SlowForwardSpeed)))){// we use release so there's no save/load issue
928
+
elseif(!OoO_Core.Applied&&(TH_Hotkeys.FrameStepBack.Released||TH_Hotkeys.FrameStepBack.Check&&Gameplay.FrameStepBack.CheckOnHotkeyHold())){// we use release so there's no save/load issue
0 commit comments