WoW:CVar cameraDistanceMaxFactor: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
(corrected for new config file name and location / added note)
Line 5: Line 5:
Can be changed either in the game via
Can be changed either in the game via


'''/console CameraDistanceMaxFactor <value>'''
'''/console cameraDistanceMaxFactor <value>'''


or with
or with


'''SET CameraDistanceMaxFactor "<value>"'''
'''SET cameraDistanceMaxFactor "<value>"'''


in WTF/config.wtf
in WTF/Account/<account-name>/config-cache.wtf
 
== Notes ==
 
*If the product of this value and the value of [[CVar cameraDistanceMax]] exceeds 50, the max distance will be 50. The camera can not be zoomed out beyond 50 yards. The game will set this value to int(50/[[CVar cameraDistanceMax]])+1 at logout if it is manually set higher than that.
[[Category:Console variables|cameraDistanceMaxFactor]]
[[Category:Console variables|cameraDistanceMaxFactor]]

Revision as of 23:11, 7 July 2010

Sets the factor by which CVar cameraDistanceMax is multiplied.

No Range

Can be changed either in the game via

/console cameraDistanceMaxFactor <value>

or with

SET cameraDistanceMaxFactor "<value>"

in WTF/Account/<account-name>/config-cache.wtf

Notes

  • If the product of this value and the value of CVar cameraDistanceMax exceeds 50, the max distance will be 50. The camera can not be zoomed out beyond 50 yards. The game will set this value to int(50/CVar cameraDistanceMax)+1 at logout if it is manually set higher than that.