forked from teamnwah/openmw-tes3coop
Disable third person zoom feature by default due to usability issues (Fixes #2129)
This commit is contained in:
parent
61d1aa78ce
commit
6960cac5eb
2 changed files with 5 additions and 1 deletions
|
@ -623,7 +623,9 @@ namespace MWInput
|
||||||
if (arg.zrel && mControlSwitch["playerviewswitch"] && mControlSwitch["playercontrols"]) //Check to make sure you are allowed to zoomout and there is a change
|
if (arg.zrel && mControlSwitch["playerviewswitch"] && mControlSwitch["playercontrols"]) //Check to make sure you are allowed to zoomout and there is a change
|
||||||
{
|
{
|
||||||
MWBase::Environment::get().getWorld()->changeVanityModeScale(arg.zrel);
|
MWBase::Environment::get().getWorld()->changeVanityModeScale(arg.zrel);
|
||||||
MWBase::Environment::get().getWorld()->setCameraDistance(arg.zrel, true, true);
|
|
||||||
|
if (Settings::Manager::getBool("allow third person zoom", "Input"))
|
||||||
|
MWBase::Environment::get().getWorld()->setCameraDistance(arg.zrel, true, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,6 +179,8 @@ camera y multiplier = 1.0
|
||||||
|
|
||||||
always run = false
|
always run = false
|
||||||
|
|
||||||
|
allow third person zoom = false
|
||||||
|
|
||||||
[Game]
|
[Game]
|
||||||
# Always use the most powerful attack when striking with a weapon (chop, slash or thrust)
|
# Always use the most powerful attack when striking with a weapon (chop, slash or thrust)
|
||||||
best attack = false
|
best attack = false
|
||||||
|
|
Loading…
Reference in a new issue