diff --git a/example/fadingTiles.js b/example/fadingTiles.js index 30ceb7458..3a08732ad 100644 --- a/example/fadingTiles.js +++ b/example/fadingTiles.js @@ -16,7 +16,7 @@ let groundTiles, skyTiles, tilesParent, transition; const params = { reinstantiateTiles, - fadeRootTiles: true, + fadeRootTiles: false, useFade: true, errorTarget: 12, fadeDuration: 0.5, diff --git a/example/googleMapsAerial.js b/example/googleMapsAerial.js index 5ae2023c7..18bfa2384 100644 --- a/example/googleMapsAerial.js +++ b/example/googleMapsAerial.js @@ -52,6 +52,7 @@ function reinstantiateTiles() { // tiles.setLatLonToYUp( 43.8803 * MathUtils.DEG2RAD, - 103.4538 * MathUtils.DEG2RAD ); // Mt Rushmore // tiles.setLatLonToYUp( 36.2679 * MathUtils.DEG2RAD, - 112.3535 * MathUtils.DEG2RAD ); // Grand Canyon // tiles.setLatLonToYUp( - 22.951890 * MathUtils.DEG2RAD, - 43.210439 * MathUtils.DEG2RAD ); // Christ the Redeemer + // tiles.setLatLonToYUp( 34.9947 * MathUtils.DEG2RAD, 135.7847 * MathUtils.DEG2RAD ); // Kiyomizu-dera tiles.setLatLonToYUp( 35.6586 * MathUtils.DEG2RAD, 139.7454 * MathUtils.DEG2RAD ); // Tokyo Tower // Note the DRACO compression files need to be supplied via an explicit source. diff --git a/example/index.js b/example/index.js index 9971c7842..b0891ab41 100644 --- a/example/index.js +++ b/example/index.js @@ -210,7 +210,7 @@ function init() { controls.maxDistance = 5000; // lights - const dirLight = new DirectionalLight( 0xffffff ); + const dirLight = new DirectionalLight( 0xffffff, 4 ); dirLight.position.set( 1, 2, 3 ); scene.add( dirLight );