File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ <h1>Scene Graph</h1>
91
91
represents light that emanates from a single point.</ p >
92
92
< pre class ="prettyprint showlinemods notranslate lang-js " translate ="no "> {
93
93
const color = 0xFFFFFF;
94
- const intensity = 3 ;
94
+ const intensity = 500 ;
95
95
const light = new THREE.PointLight(color, intensity);
96
96
scene.add(light);
97
97
}
Original file line number Diff line number Diff line change 79
79
{
80
80
81
81
const color = 0xFFFFFF ;
82
- const intensity = 3 ;
82
+ const intensity = 500 ;
83
83
const light = new THREE . PointLight ( color , intensity ) ;
84
84
scene . add ( light ) ;
85
85
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ <h1>Graphe de scène</h1>
89
89
représente la lumière qui émane d'un point unique.</ p >
90
90
< pre class ="prettyprint showlinemods notranslate lang-js " translate ="no "> {
91
91
const color = 0xFFFFFF;
92
- const intensity = 3 ;
92
+ const intensity = 500 ;
93
93
const light = new THREE.PointLight(color, intensity);
94
94
scene.add(light);
95
95
}
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ <h1>のシーングラフ</h1>
80
80
一点から発せられる明かりというのが、とりあえずの簡単な説明です。</ p >
81
81
< pre class ="prettyprint showlinemods notranslate lang-js " translate ="no "> {
82
82
const color = 0xFFFFFF;
83
- const intensity = 3 ;
83
+ const intensity = 500 ;
84
84
const light = new THREE.PointLight(color, intensity);
85
85
scene.add(light);
86
86
}
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ <h1>씬 그래프(Scene graph)</h1>
89
89
정도로 알아둡시다.</ p >
90
90
< pre class ="prettyprint showlinemods notranslate lang-js " translate ="no "> {
91
91
const color = 0xFFFFFF;
92
- const intensity = 3 ;
92
+ const intensity = 500 ;
93
93
const light = new THREE.PointLight(color, intensity);
94
94
scene.add(light);
95
95
}
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ <h1>Граф сцены </h1>
89
89
представляет собой точечный источник света.</ p >
90
90
< pre class ="prettyprint showlinemods notranslate lang-js " translate ="no "> {
91
91
const color = 0xFFFFFF;
92
- const intensity = 3 ;
92
+ const intensity = 500 ;
93
93
const light = new THREE.PointLight(color, intensity);
94
94
scene.add(light);
95
95
}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ <h1>场景图</h1>
66
66
< p > 我们也在场景的中心放置了一个点光源(point light)。稍后我们会介绍更多关于点光源的细节,但现在简单地说,点光源代表从一个点向各个方向发射的光源。</ p >
67
67
< pre class ="prettyprint showlinemods notranslate lang-js " translate ="no "> {
68
68
const color = 0xffffff;
69
- const intensity = 3 ;
69
+ const intensity = 500 ;
70
70
const light = new THREE.PointLight(color, intensity);
71
71
scene.add(light);
72
72
}
You can’t perform that action at this time.
0 commit comments