Skip to content

Commit b1c1131

Browse files
authored
Merge pull request #18464 from mrdoob/instancedmesh
InstancedMesh: frustumCulled false by default.
2 parents 1f86315 + c438409 commit b1c1131

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/objects/InstancedMesh.js

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ function InstancedMesh( geometry, material, count ) {
2020

2121
this.count = count;
2222

23+
this.frustumCulled = false;
24+
2325
}
2426

2527
InstancedMesh.prototype = Object.assign( Object.create( Mesh.prototype ), {

0 commit comments

Comments
 (0)