Skip to content

Commit

Permalink
Examples: Clean up. (#24942)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 authored Nov 13, 2022
1 parent 877dccd commit 82a865f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified examples/screenshots/webgl_materials_normalmap.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified examples/screenshots/webgl_shadowmap_pointlight.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/webgl_materials_normalmap.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
ambientLight = new THREE.AmbientLight( 0x444444 );
scene.add( ambientLight );

pointLight = new THREE.PointLight( 0xffffff, 1.25, 1000 );
pointLight = new THREE.PointLight( 0xffffff, 2, 1000 );
pointLight.position.set( 0, 0, 600 );

scene.add( pointLight );
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_shadowmap_pointlight.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

function createLight( color ) {

const intensity = 1.5;
const intensity = 2;

const light = new THREE.PointLight( color, intensity, 20 );
light.castShadow = true;
Expand Down

0 comments on commit 82a865f

Please sign in to comment.