Skip to content

Commit 6caa5b6

Browse files
committed
Updated builds.
1 parent 9334d18 commit 6caa5b6

File tree

5 files changed

+72
-10
lines changed

5 files changed

+72
-10
lines changed

build/three.cjs

Lines changed: 35 additions & 4 deletions
Large diffs are not rendered by default.

build/three.core.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46705,6 +46705,15 @@ class RectAreaLight extends Light {
4670546705
*/
4670646706
this.height = height;
4670746707

46708+
/**
46709+
* A texture that modulates the light color. The texture is
46710+
* projected onto the light's surface and sampled during shading.
46711+
*
46712+
* @type {?Texture}
46713+
* @default null
46714+
*/
46715+
this.map = null;
46716+
4670846717
}
4670946718

4671046719
/**
@@ -46733,6 +46742,7 @@ class RectAreaLight extends Light {
4673346742

4673446743
this.width = source.width;
4673546744
this.height = source.height;
46745+
this.map = source.map;
4673646746

4673746747
return this;
4673846748

@@ -46745,6 +46755,8 @@ class RectAreaLight extends Light {
4674546755
data.object.width = this.width;
4674646756
data.object.height = this.height;
4674746757

46758+
if ( this.map && this.map.isTexture ) data.object.map = this.map.toJSON( meta ).uuid;
46759+
4674846760
return data;
4674946761

4675046762
}

build/three.core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/three.module.js

Lines changed: 23 additions & 4 deletions
Large diffs are not rendered by default.

build/three.module.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)