Documentation
Readme
View as plain text
# modToggleMinimap
This mod introduces actions to toggle various HUD modules. These actions can be bound to inputs in the
&UserPath%\Documents\The Witcher 3\input.settings file.
* ToggleControlsFeedback
* ToggleItemInfo
* ToggleMinimap
* ToggleQuests
* ToggleWolfHead
NOTE: If you choose to map multiple actions to the same input (e.g. quests and minimap bound to left stick) you'll
need to set them all to on or off in the options menu. Otherwise you'll tap the stick and the minimap will be on
and the quests off or vice versa.
If you want to have something off all the time, don't bind it to a key, just go into the options and turn it off.
## Installation
1. Create the directory structure: %WitcherGamePath%\mods\modToggleMinimap\content\scripts\game\gui\hud\modules
2. Put all the files from this mod's content\scripts\game\gui\hud\modules directory into that directory.
3. Bind the actions however you like. There's a default input.settings attached if you don't want to mess around in there yourself.
## Binding the action
The attached input.settings will map all of the toggle actions to L3 for both exploration and horseback mode.
If you're keeping any of the modules off permanently, you'll need to go in and remove the corresponding binding.
To use the default:
1. Copy %UserHome%\Documents\The Witcher 3\input.settings to %UserHome%\Documents\The Witcher 3\input.settings.bak
2. Copy the attached input.settings file to %UserHome%\Documents\The Witcher 3\input.settings
If you already have custom input settings that you don't want to revert to defaults, or if you want to map these new actions
differently, you can add these lines to whichever gameplay modes you like:
%Key%=(Action=%ActionName%)
You can bind multiple actions to the same key. You will need to put the mappings under the header for every gameplay mode where
you plan to use the binding. I recommend:
* [Exploration]
* [Horse]
For example:
...
[Exploration]
IK_Pad_LeftThumb=(Action=ToggleControlsFeedback)
IK_Pad_LeftThumb=(Action=ToggleItemInfo)
IK_Pad_LeftThumb=(Action=ToggleMinimap)
IK_Pad_LeftThumb=(Action=ToggleQuests)
IK_Pad_LeftThumb=(Action=ToggleWolfHead)
...
[Horse]
IK_Pad_LeftThumb=(Action=ToggleControlsFeedback)
IK_Pad_LeftThumb=(Action=ToggleItemInfo)
IK_Pad_LeftThumb=(Action=ToggleMinimap)
IK_Pad_LeftThumb=(Action=ToggleQuests)
IK_Pad_LeftThumb=(Action=ToggleWolfHead)
...
## Thanks!
Thanks to alpha94, PukinDumpling, and rotchild for helpful recommendations!