How can I adjust my camera to look behind, with the center of the pong table being at x=0,z=0? I've tried changing the camera.lookAt settings but haven't had success. You can see the current camera view here.
scene = new THREE.Scene();
scene.id=1;
camera = new THREE.PerspectiveCamera(75, w / h, 0.1, 1000);
camera.lookAt(0,0,0);
camera.position.set(0, 3.75, -5);