Civilization VI guide : How to change camera keys

bravie

Chieftain
Joined
Oct 20, 2016
Messages
4
Moving camera by using the cursors is awful , this guide will show how to change camera keys to WASD

 
Last edited:
- "Find the DefaultKeyDownHandler" section and make the changes as follows :
if( uiKey == Keys.VK_UP or uiKey == Keys.W ) then
if( uiKey == Keys.VK_RIGHT or uiKey == Keys.D ) then
if( uiKey == Keys.VK_DOWN or uiKey == Keys.S ) then
if( uiKey == Keys.VK_LEFT or uiKey == Keys.A ) then
- "Find the DefaultKeyUpHandler" section and make the changes as follows :
if( uiKey == Keys.VK_UP or uiKey == Keys.W ) then
if( uiKey == Keys.VK_RIGHT or uiKey == Keys.D ) then
if( uiKey == Keys.VK_DOWN or uiKey == Keys.S ) then
if( uiKey == Keys.VK_LEFT or uiKey == Keys.A ) then
 
Top Bottom