Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (1717ef1...8813d3d)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Nov 12, 2024
1 parent 8813d3d commit 80d4a54
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -9766,7 +9766,7 @@ module.exports.Component = registerComponent('light', {
}
},
intensity: {
default: 1.0,
default: 3.14,
min: 0,
if: {
type: ['ambient', 'directional', 'hemisphere', 'point', 'spot', 'probe']
Expand Down Expand Up @@ -15079,7 +15079,7 @@ var register = (__webpack_require__(/*! ../../core/component */ "./src/core/comp
function updateLights(estimate, probeLight, directionalLight, directionalLightPosition) {
var intensityScalar = Math.max(estimate.primaryLightIntensity.x, Math.max(estimate.primaryLightIntensity.y, estimate.primaryLightIntensity.z));
probeLight.sh.fromArray(estimate.sphericalHarmonicsCoefficients);
probeLight.intensity = 1;
probeLight.intensity = 3.14;
if (directionalLight) {
directionalLight.color.setRGB(estimate.primaryLightIntensity.x / intensityScalar, estimate.primaryLightIntensity.y / intensityScalar, estimate.primaryLightIntensity.z / intensityScalar);
directionalLight.intensity = intensityScalar;
Expand Down Expand Up @@ -24589,7 +24589,7 @@ __webpack_require__(/*! ./core/a-mixin */ "./src/core/a-mixin.js");
// Extras.
__webpack_require__(/*! ./extras/components/ */ "./src/extras/components/index.js");
__webpack_require__(/*! ./extras/primitives/ */ "./src/extras/primitives/index.js");
console.log('A-Frame Version: 1.6.0 (Date 2024-11-09, Commit #d1120096)');
console.log('A-Frame Version: 1.6.0 (Date 2024-11-12, Commit #8813d3d2)');
console.log('THREE Version (https://github.com/supermedium/three.js):', THREE.REVISION);

// Wait for ready state, unless user asynchronously initializes A-Frame.
Expand Down Expand Up @@ -26049,7 +26049,7 @@ module.exports.System = registerSystem('light', {
directionalLight = document.createElement('a-entity');
directionalLight.setAttribute('light', {
color: '#FFF',
intensity: 0.6,
intensity: 1.884,
castShadow: true
});
directionalLight.setAttribute('position', {
Expand Down
2 changes: 1 addition & 1 deletion dist/aframe-master.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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 @@ -56,7 +56,7 @@ require('./core/a-mixin');
require('./extras/components/');
require('./extras/primitives/');

console.log('A-Frame Version: 1.6.0 (Date 2024-11-09, Commit #d1120096)');
console.log('A-Frame Version: 1.6.0 (Date 2024-11-12, Commit #8813d3d2)');
console.log('THREE Version (https://github.com/supermedium/three.js):',
THREE.REVISION);

Expand Down

0 comments on commit 80d4a54

Please sign in to comment.