I know, I have too much spare time. But if you want to change the default camera mode to the overview, change the lines 89/90 in MouseHandler.cpp
Code: Select all
currentCamController=camControllers[0];
currentCamControllerNum=0;
to
Code: Select all
currentCamController=camControllers[1];
currentCamControllerNum=1;
You can also use the value 2 if you're more of a Total War style fan. This works, but as an aside I'd like to know why the lines 232-233 in GameSetup.cpp
Code: Select all
mouse->currentCamController=mouse->camControllers[1];
mouse->currentCamControllerNum=1;
don't do this already.