Skip to content

Commit 7b1a0a7

Browse files
committed
Updated builds.
1 parent 9676b37 commit 7b1a0a7

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

build/three.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11770,7 +11770,7 @@
1177011770

1177111771
this.array = array;
1177211772
this.itemSize = itemSize;
11773-
this.count = array.length / itemSize;
11773+
this.count = array !== undefined ? array.length / itemSize : 0;
1177411774
this.normalized = normalized === true;
1177511775

1177611776
this.dynamic = false;
@@ -38207,7 +38207,7 @@
3820738207

3820838208
this.array = array;
3820938209
this.stride = stride;
38210-
this.count = array.length / stride;
38210+
this.count = array !== undefined ? array.length / stride : 0;
3821138211

3821238212
this.dynamic = false;
3821338213
this.updateRange = { offset: 0, count: - 1 };

0 commit comments

Comments
 (0)