Seeing as I rely on being able to set my camera position to quite a steep angle for ground AoE, I took a look into this.
Turns out the camera settings are no longer being loaded from either the per character or per account config-cache.wtf files, but they
are loaded if you put them in the Config.wtf file for the whole game install. The only problem left is that they still get wiped from that file when the game exits (not on a
/console reloadui or logout though).
You could set the file to read only to stop WoW messing with it, but that's inconvenient when you want to save changes you made to settings in game.
The fix I'm using is to leave the file writable by WoW, and let it wipe the camera settings every time it exits, but have a batch file append my camera settings back into the Config.wtf, before WoW is launched again.
This is the contents of my batch file:
- Code:
copy /b D:\WoW1\WTF\Config.wtf+D:\WoW1\WTF\camera_settings.wtf D:\WoW1\WTF\Config.wtf
copy /b D:\WoW2\WTF\Config.wtf+D:\WoW2\WTF\camera_settings.wtf D:\WoW2\WTF\Config.wtf
copy /b D:\WoW3\WTF\Config.wtf+D:\WoW3\WTF\camera_settings.wtf D:\WoW3\WTF\Config.wtf
copy /b D:\WoW4\WTF\Config.wtf+D:\WoW4\WTF\camera_settings.wtf D:\WoW4\WTF\Config.wtf
copy /b D:\WoW5\WTF\Config.wtf+D:\WoW5\WTF\camera_settings.wtf D:\WoW5\WTF\Config.wtf
saveview setview 4.0.1 cameraDistanceA cameraPitchA (for google)