You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Extensions/3D/JsExtension.js
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1908,7 +1908,9 @@ module.exports = {
1908
1908
.addEffect('AmbientLight')
1909
1909
.setFullName(_('Ambient light'))
1910
1910
.setDescription(
1911
-
_('A light that illuminates all objects from every direction.')
1911
+
_(
1912
+
'A light that illuminates all objects from every direction. Often used along with a Directional light (though a Hemisphere light can be used instead of an Ambient light).'
1913
+
)
1912
1914
)
1913
1915
.markAsNotWorkingForObjects()
1914
1916
.markAsOnlyWorkingFor3D()
@@ -1929,7 +1931,11 @@ module.exports = {
1929
1931
consteffect=extension
1930
1932
.addEffect('DirectionalLight')
1931
1933
.setFullName(_('Directional light'))
1932
-
.setDescription(_('A very far light source like the sun.'))
1934
+
.setDescription(
1935
+
_(
1936
+
"A very far light source like the sun. This is the light to use for casting shadows for 3D objects (other lights won't emit shadows). Often used along with a Hemisphere light."
0 commit comments