12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="list.js"></script>
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- [page:LightShadow] →
- <h1>[name]</h1>
- <div class="desc">
- This is used internally by [page:SpotLight SpotLights] for calculating shadows.
- </div>
- <h2>Example</h2>
- <div>
- <code>
- //Create a WebGLRenderer and turn on shadows in the renderer
- var renderer = new THREE.WebGLRenderer();
- renderer.shadowMap.enabled = true;
- renderer.shadowMap.type = THREE.PCFSoftShadowMap; // default THREE.PCFShadowMap
- //Create a SpotLight and turn on shadows for the light
- var light = new THREE.SpotLight( 0xffffff );
- light.castShadow = true; // default false
- scene.add( light );
- //Set up shadow properties for the light
- light.shadow.mapSize.width = 512; // default
- light.shadow.mapSize.height = 512; // default
- light.shadow.camera.near = 0.5; // default
- light.shadow.camera.far = 500 // default
- //Create a sphere that cast shadows (but does not receive them)
- var sphereGeometry = new THREE.SphereBufferGeometry( 5, 32, 32 );
- var sphereMaterial = new THREE.MeshStandardMaterial( { color: 0xff0000 } );
- var sphere = new THREE.Mesh( sphereGeometry, sphereMaterial );
- sphere.castShadow = true; //default is false
- sphere.receiveShadow = false; //default
- scene.add( sphere );
- //Create a plane that receives shadows (but does not cast them)
- var planeGeometry = new THREE.PlaneBufferGeometry( 20, 20, 32, 32 );
- var planeMaterial = new THREE.MeshStandardMaterial( { color: 0x00ff00 } )
- var plane = new THREE.Mesh( planeGeometry, planeMaterial );
- plane.receiveShadow = true;
- scene.add( plane );
- //Create a helper for the shadow camera (optional)
- var helper = new THREE.CameraHelper( light.shadow.camera );
- scene.add( helper );
- </code>
- </div>
- <h2>Constructor</h2>
- The constructor creates a [page:PerspectiveCamera PerspectiveCamera] to manage the shadow's view of the world.
- <h2>Properties</h2>
- See the base [page:LightShadow LightShadow] class for common properties.
- <h3>[property:Camera camera]</h3>
- <div>
- The light's view of the world. This is used to generate a depth map of the scene; objects behind
- other objects from the light's perspective will be in shadow.<br /><br />
- The default is a [page:PerspectiveCamera] with [page:PerspectiveCamera.fov fov] of 90,
- [page:PerspectiveCamera.aspect aspect] of 1, [page:PerspectiveCamera.near near]
- clipping plane at 0.5 and [page:PerspectiveCamera.far far] clipping plane at 500.
- </div>
- <h3>[property:Boolean isSpotLightShadow]</h3>
- <div>
- Used to check whether this or derived classes are spot light shadows. Default is *true*.<br /><br />
- You should not change this, as it used internally for optimisation.
- </div>
- <h2>Methods</h2>
- See the base [page:LightShadow LightShadow] class for common methods.
- <h3>[method:SpotLightShadow update]( [page:SpotLight light] )</h3>
- <div>
- Updates the internal perspective [page:.camera camera] based on the passed in [page:SpotLight light].
- </div>
- <h2>Source</h2>
- [link:https://github.com/mrdoob/three.js/blob/master/src/lights/[name].js src/lights/[name].js]
- </body>
- </html>
|