Skip to content

Commit

Permalink
Docs: Clean up. (#27135)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 committed Nov 7, 2023
1 parent df3b760 commit 79f89cd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/api/ar/helpers/DirectionalLightHelper.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ <h2>مثال الكود</h2>

<code>
const light = new THREE.DirectionalLight( 0xFFFFFF );
scene.add( light );

const helper = new THREE.DirectionalLightHelper( light, 5 );
scene.add( helper );
</code>
Expand Down
3 changes: 2 additions & 1 deletion docs/api/en/helpers/DirectionalLightHelper.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ <h2>Code Example</h2>

<code>
const light = new THREE.DirectionalLight( 0xFFFFFF );
const helper = new THREE.DirectionalLightHelper( light, 5 );
scene.add( light );

const helper = new THREE.DirectionalLightHelper( light, 5 );
scene.add( helper );
</code>

Expand Down
2 changes: 2 additions & 0 deletions docs/api/it/helpers/DirectionalLightHelper.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ <h2>Codice di Esempio</h2>

<code>
const light = new THREE.DirectionalLight( 0xFFFFFF );
scene.add( light );

const helper = new THREE.DirectionalLightHelper( light, 5 );
scene.add( helper );
</code>
Expand Down
2 changes: 2 additions & 0 deletions docs/api/zh/helpers/DirectionalLightHelper.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ <h2>代码示例</h2>

<code>
const light = new THREE.DirectionalLight( 0xFFFFFF );
scene.add( light );

const helper = new THREE.DirectionalLightHelper( light, 5 );
scene.add( helper );
</code>
Expand Down

0 comments on commit 79f89cd

Please sign in to comment.