Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (aframevr/aframe@de4d5d5...16e18f6)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Jun 30, 2017
1 parent 16e18f6 commit 538439e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
7 changes: 4 additions & 3 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -68319,8 +68319,9 @@ module.exports.Component = registerComponent('raycaster', {
raycaster.near = data.near;

// Draw line.
if (data.showLine && data.far !== oldData.far ||
data.origin !== oldData.origin || data.direction !== oldData.direction) {
if (data.showLine &&
(data.far !== oldData.far || data.origin !== oldData.origin ||
data.direction !== oldData.direction)) {
this.unitLineEndVec3.copy(data.origin).add(data.direction).normalize();
this.drawLine();
}
Expand Down Expand Up @@ -76608,7 +76609,7 @@ _dereq_('./core/a-mixin');
_dereq_('./extras/components/');
_dereq_('./extras/primitives/');

console.log('A-Frame Version: 0.6.0 (Date 30-06-2017, Commit #34d1988)');
console.log('A-Frame Version: 0.6.0 (Date 30-06-2017, Commit #16e18f6)');
console.log('three Version:', pkg.dependencies['three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

Expand Down
6 changes: 3 additions & 3 deletions dist/aframe-master.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/aframe-master.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/aframe-master.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ require('./core/a-mixin');
require('./extras/components/');
require('./extras/primitives/');

console.log('A-Frame Version: 0.6.0 (Date 30-06-2017, Commit #34d1988)');
console.log('A-Frame Version: 0.6.0 (Date 30-06-2017, Commit #16e18f6)');
console.log('three Version:', pkg.dependencies['three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

Expand Down

0 comments on commit 538439e

Please sign in to comment.