mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-04 09:56:33 +05:00
Merge pull request #1 from UnderSet/patch-1
Add toolmenu option for hand switch feature
This commit is contained in:
commit
6e365c37d9
2 changed files with 7 additions and 0 deletions
|
@ -155,6 +155,10 @@ beatrun.toolsmenu.gameplay.quickturngrounddesc=Toggles quickturning with seconda
|
|||
beatrun.toolsmenu.gameplay.quickturnhandsonly=Quickturn Hands Only
|
||||
beatrun.toolsmenu.gameplay.quickturnhandsonlydesc=Toggles quickturning with "Runner Hands" only
|
||||
|
||||
# This is written pretty awkwardly, please rewrite if necessary - UnderSet
|
||||
beatrun.toolsmenu.gameplay.autohandswitch=Automatic Hand Switch
|
||||
beatrun.toolsmenu.gameplay.autohandswitchdesc=Automatically switches to Beatrun's hands during certain movement scenarios.
|
||||
|
||||
beatrun.toolsmenu.gameplay.puristmode=Purist Mode
|
||||
beatrun.toolsmenu.gameplay.puristmodedesc=Purist mode is a clientside preference that severely weakens the ability to strafe while in the air, which is how Mirror's Edge games handle this.\nDisabled = No restrictions\nEnabled = Reduced move speed in the air
|
||||
|
||||
|
|
|
@ -246,6 +246,9 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
|
|||
panel:CheckBox("#beatrun.toolsmenu.gameplay.quickturnhandsonly", "Beatrun_QuickturnHandsOnly")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.gameplay.quickturnhandsonlydesc")
|
||||
|
||||
panel:CheckBox("#beatrun.toolsmenu.gameplay.autohandswitch", "Beatrun_AutoHandSwitching")
|
||||
panel:ControlHelp("#beatrun.toolsmenu.gameplay.autohandswitchdesc")
|
||||
|
||||
panel:CheckBox("#beatrun.toolsmenu.gameplay.puristmode", "Beatrun_PuristMode")
|
||||
panel:ControlHelp(language.GetPhrase("beatrun.toolsmenu.gameplay.puristmodedesc"))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue