Skip to content

Commit 97eb3d3

Browse files
committed
Updated builds.
1 parent 73a4070 commit 97eb3d3

File tree

2 files changed

+234
-233
lines changed

2 files changed

+234
-233
lines changed

build/three.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34706,19 +34706,20 @@
3470634706

3470734707
update: ( function () {
3470834708

34709-
var focus, fov, aspect, near, far, zoom;
34709+
var id, focus, fov, aspect, near, far, zoom;
3471034710

3471134711
var eyeRight = new Matrix4();
3471234712
var eyeLeft = new Matrix4();
3471334713

3471434714
return function update( camera ) {
3471534715

34716-
var needsUpdate = focus !== camera.focus || fov !== camera.fov ||
34716+
var needsUpdate = id !== camera.id || focus !== camera.focus || fov !== camera.fov ||
3471734717
aspect !== camera.aspect * this.aspect || near !== camera.near ||
3471834718
far !== camera.far || zoom !== camera.zoom;
3471934719

3472034720
if ( needsUpdate ) {
3472134721

34722+
id = camera.id;
3472234723
focus = camera.focus;
3472334724
fov = camera.fov;
3472434725
aspect = camera.aspect * this.aspect;

0 commit comments

Comments
 (0)