Skip to content

Commit

Permalink
Merge pull request #19890 from WestLangley/dev_fat_lines
Browse files Browse the repository at this point in the history
LineSegmentsGeometry: set needsUpdate directly
  • Loading branch information
mrdoob committed Jul 20, 2020
2 parents db276bf + c894f44 commit d32c92b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/js/lines/LineSegmentsGeometry.js
Expand Up @@ -37,7 +37,7 @@ THREE.LineSegmentsGeometry.prototype = Object.assign( Object.create( THREE.Insta

end.applyMatrix4( matrix );

start.data.needsUpdate = true;
start.needsUpdate = true;

}

Expand Down
2 changes: 1 addition & 1 deletion examples/jsm/lines/LineSegmentsGeometry.js
Expand Up @@ -47,7 +47,7 @@ LineSegmentsGeometry.prototype = Object.assign( Object.create( InstancedBufferGe

end.applyMatrix4( matrix );

start.data.needsUpdate = true;
start.needsUpdate = true;

}

Expand Down

0 comments on commit d32c92b

Please sign in to comment.