Reputation: 1337
Light.shadowCameraVisible = true;
gives a warning
THREE.Light: .shadowCameraVisible has been removed. Use new THREE.CameraHelper( light.shadow ) instead.
on adding
Scene.add(new THREE.CameraHelper(Light.shadow ));
gives an error
Uncaught TypeError: this.camera.updateProjectionMatrix is not a function (three.js :35002)
Upvotes: 10
Views: 4188
Reputation: 4494
The CameraHelper
constructor takes a Camera object:
var light = new THREE.SpotLight( 0xFFAA55 );
light.castShadow = true;
var helper = new THREE.CameraHelper( light.shadow.camera );
scene.add( helper );
Three.js r107
Example: http://jsfiddle.net/kvnc1g4y/
Upvotes: 13