In the Kakara Engine the Camera is separate from the GameItem system. You can get the instance of a camera through getCamera() in the scene. From there you can move and rotate the camera.
getCamera().setPosition(5,5,5);
You can move the Camera around as a way of player movement.
Move on to the next topic to see a practical use of moving the Camera.