In the game im making im using a camera to follow the players movements. The only scripting i used was in the players script and is:
function final(self)
msg.post(".", "release_input_focus")
msg.post("camera", "release_camera_focus")
end
and
function init(self) --this function runs when the level begins
msg.post("camera", "acquire_camera_focus")
end
do you know what settings i need to change in the camera to get it to follow the player in the centre of the screen?
This is what is looks like from the build window: the player is in the bottom left of the screen out of view (the enemy npc is in the screen btw)