Skip to content

Commit fa5da93

Browse files
authored
fixed scenegraph example typo (#31289)
1 parent 91de291 commit fa5da93

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

manual/en/scenegraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ <h1>Scene Graph</h1>
9191
represents light that emanates from a single point.</p>
9292
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
9393
const color = 0xFFFFFF;
94-
const intensity = 3;
94+
const intensity = 500;
9595
const light = new THREE.PointLight(color, intensity);
9696
scene.add(light);
9797
}

manual/examples/scenegraph-sun-earth-moon-axes-grids.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
{
8080

8181
const color = 0xFFFFFF;
82-
const intensity = 3;
82+
const intensity = 500;
8383
const light = new THREE.PointLight( color, intensity );
8484
scene.add( light );
8585

manual/fr/scenegraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ <h1>Graphe de scène</h1>
8989
représente la lumière qui émane d'un point unique.</p>
9090
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
9191
const color = 0xFFFFFF;
92-
const intensity = 3;
92+
const intensity = 500;
9393
const light = new THREE.PointLight(color, intensity);
9494
scene.add(light);
9595
}

manual/ja/scenegraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h1>のシーングラフ</h1>
8080
一点から発せられる明かりというのが、とりあえずの簡単な説明です。</p>
8181
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
8282
const color = 0xFFFFFF;
83-
const intensity = 3;
83+
const intensity = 500;
8484
const light = new THREE.PointLight(color, intensity);
8585
scene.add(light);
8686
}

manual/ko/scenegraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ <h1>씬 그래프(Scene graph)</h1>
8989
정도로 알아둡시다.</p>
9090
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
9191
const color = 0xFFFFFF;
92-
const intensity = 3;
92+
const intensity = 500;
9393
const light = new THREE.PointLight(color, intensity);
9494
scene.add(light);
9595
}

manual/ru/scenegraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ <h1>Граф сцены </h1>
8989
представляет собой точечный источник света.</p>
9090
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
9191
const color = 0xFFFFFF;
92-
const intensity = 3;
92+
const intensity = 500;
9393
const light = new THREE.PointLight(color, intensity);
9494
scene.add(light);
9595
}

manual/zh/scenegraph.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h1>场景图</h1>
6666
<p>我们也在场景的中心放置了一个点光源(point light)。稍后我们会介绍更多关于点光源的细节,但现在简单地说,点光源代表从一个点向各个方向发射的光源。</p>
6767
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
6868
const color = 0xffffff;
69-
const intensity = 3;
69+
const intensity = 500;
7070
const light = new THREE.PointLight(color, intensity);
7171
scene.add(light);
7272
}

0 commit comments

Comments
 (0)