lookAt method
Implementation
FirstPersonControls lookAt ( x, y, z ) {
if ( x.isVector3 ) {
target.copy( x );
} else {
target.set( x, y, z );
}
this.object.lookAt( target );
setOrientation( this );
return this;
}
FirstPersonControls lookAt ( x, y, z ) {
if ( x.isVector3 ) {
target.copy( x );
} else {
target.set( x, y, z );
}
this.object.lookAt( target );
setOrientation( this );
return this;
}