A'llo, you can force the camera to always center on the active character.
1. navigate to the
game properties section of the editor.
2. click on the lightning icon next to "at begin start following action" to open up a window where you can create some action parts/scripts to be executed on game launch.
3. create an
execute a script action part & add this code to it...
game.HorizontalScrollDistance = (game.WindowResolution.x / 2)
game.VerticalScrollDistance = (game.WindowResolution.y / 2)
This will force the camera to always be centered as we are setting the distance from the edges of viewport to half the size of the game resolution width & height.