Skip to content

Commit 52ab83f

Browse files
Bump aframe-master dist/ builds. (5e98e2d...d2e9475)
1 parent d2e9475 commit 52ab83f

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

dist/aframe-master.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15850,10 +15850,12 @@ var Component = (0,_core_component_js__WEBPACK_IMPORTED_MODULE_0__.registerCompo
1585015850
var flippedPixels = pixels.slice(0);
1585115851
for (var x = 0; x < width; ++x) {
1585215852
for (var y = 0; y < height; ++y) {
15853-
flippedPixels[x * 4 + y * width * 4] = pixels[x * 4 + (height - y) * width * 4];
15854-
flippedPixels[x * 4 + 1 + y * width * 4] = pixels[x * 4 + 1 + (height - y) * width * 4];
15855-
flippedPixels[x * 4 + 2 + y * width * 4] = pixels[x * 4 + 2 + (height - y) * width * 4];
15856-
flippedPixels[x * 4 + 3 + y * width * 4] = pixels[x * 4 + 3 + (height - y) * width * 4];
15853+
var from = x * 4 + (height - y - 1) * width * 4;
15854+
var to = x * 4 + y * width * 4;
15855+
flippedPixels[to] = pixels[from];
15856+
flippedPixels[to + 1] = pixels[from + 1];
15857+
flippedPixels[to + 2] = pixels[from + 2];
15858+
flippedPixels[to + 3] = pixels[from + 3];
1585715859
}
1585815860
}
1585915861
return flippedPixels;
@@ -61733,7 +61735,7 @@ if (_utils_index_js__WEBPACK_IMPORTED_MODULE_16__.device.isBrowserEnvironment) {
6173361735
window.logs = debug;
6173461736
__webpack_require__(/*! ./style/aframe.css */ "./src/style/aframe.css");
6173561737
}
61736-
console.log('A-Frame Version: 1.7.1 (Date 2025-12-19, Commit #53d5b3db)');
61738+
console.log('A-Frame Version: 1.7.1 (Date 2026-02-21, Commit #d2e94756)');
6173761739
console.log('THREE Version (https://github.com/supermedium/three.js):', _lib_three_js__WEBPACK_IMPORTED_MODULE_1__["default"].REVISION);
6173861740

6173961741
// Wait for ready state, unless user asynchronously initializes A-Frame.

dist/aframe-master.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.module.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.module.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if (utils.device.isBrowserEnvironment) {
5858
require('./style/aframe.css');
5959
}
6060

61-
console.log('A-Frame Version: 1.7.1 (Date 2025-12-19, Commit #53d5b3db)');
61+
console.log('A-Frame Version: 1.7.1 (Date 2026-02-21, Commit #d2e94756)');
6262
console.log('THREE Version (https://github.com/supermedium/three.js):',
6363
THREE.REVISION);
6464

0 commit comments

Comments
 (0)