Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (aframevr/aframe@b610a2f...60fa32d)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Feb 2, 2019
1 parent 60fa32d commit b809e7b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 11 deletions.
14 changes: 12 additions & 2 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -73434,14 +73434,23 @@ module.exports.AScene = registerElement('a-scene', {
var rendererAttrString;
var rendererConfig;

rendererConfig = {alpha: true, antialias: !isMobile, canvas: this.canvas, logarithmicDepthBuffer: false};
rendererConfig = {
alpha: true,
antialias: !isMobile,
canvas: this.canvas,
logarithmicDepthBuffer: false
};

this.maxCanvasSize = {height: 1920, width: 1920};

if (this.hasAttribute('renderer')) {
rendererAttrString = this.getAttribute('renderer');
rendererAttr = utils.styleParser.parse(rendererAttrString);

if (rendererAttr.precision) {
rendererConfig.precision = rendererAttr.precision + 'p';
}

if (rendererAttr.antialias && rendererAttr.antialias !== 'auto') {
rendererConfig.antialias = rendererAttr.antialias === 'true';
}
Expand Down Expand Up @@ -75535,7 +75544,7 @@ _dereq_('./core/a-mixin');
_dereq_('./extras/components/');
_dereq_('./extras/primitives/');

console.log('A-Frame Version: 0.8.2 (Date 2019-01-31, Commit #c3e5533)');
console.log('A-Frame Version: 0.8.2 (Date 2019-02-02, Commit #60fa32d)');
console.log('three Version:', pkg.dependencies['three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

Expand Down Expand Up @@ -77104,6 +77113,7 @@ module.exports.System = registerSystem('renderer', {
maxCanvasWidth: {default: 1920},
maxCanvasHeight: {default: 1920},
physicallyCorrectLights: {default: false},
precision: {default: 'high', oneOf: ['high', 'medium', 'low']},
sortObjects: {default: false},
colorManagement: {default: false},
gammaOutput: {default: false}
Expand Down
8 changes: 4 additions & 4 deletions dist/aframe-master.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/aframe-master.min.js

Large diffs are not rendered by default.

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 @@ -89,7 +89,7 @@ require('./core/a-mixin');
require('./extras/components/');
require('./extras/primitives/');

console.log('A-Frame Version: 0.8.2 (Date 2019-01-31, Commit #c3e5533)');
console.log('A-Frame Version: 0.8.2 (Date 2019-02-02, Commit #60fa32d)');
console.log('three Version:', pkg.dependencies['three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

Expand Down

0 comments on commit b809e7b

Please sign in to comment.