i'm trying this:
controls = new THREE.FirstPersonControls(camera);
controls.movementSpeed = 1000; controls.lookSpeed = 0.125; controls.lookVertical = true;
it didn't work, From here i found out that i need to update the control with time delta:
var clock = new THREE.Clock();
controls.update( clock.getDelta() );
but I get undefined is not a function error for THREE.Clock()
can you please point me to working demo/tutorial with FirstPersonControls, or just tell me whats wrong?
Thanks!!
