Skip to content

Commit 63600d3

Browse files
Bump aframe-master dist/ builds. (0d05fa6...5c4bdbf)
1 parent 5c4bdbf commit 63600d3

7 files changed

Lines changed: 17 additions & 7 deletions

dist/aframe-master.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29719,7 +29719,17 @@ function checkControllerPresentAndSetup(component, idPrefix, queryObject) {
2971929719
// Update controller presence.
2972029720
if (isPresent) {
2972129721
component.addEventListeners();
29722+
// On reconnect, injectTrackedControls calls setAttribute('tracked-controls', ...)
29723+
// with unchanged data so update/updateController is skipped.
29724+
// tracked-controls' own controllersupdated listener would call updateController,
29725+
// but it was registered after the specific controller component's listener
29726+
// (e.g. meta-touch-controls) so it fires too late.
29727+
// Explicitly call updateController before emitting controllerconnected.
29728+
var trackedControls = el.components['tracked-controls'];
2972229729
component.injectTrackedControls(controller);
29730+
if (trackedControls) {
29731+
trackedControls.updateController();
29732+
}
2972329733
el.emit('controllerconnected', {
2972429734
name: component.name,
2972529735
component: component
@@ -61738,7 +61748,7 @@ if (_utils_index_js__WEBPACK_IMPORTED_MODULE_16__.device.isBrowserEnvironment) {
6173861748
window.logs = debug;
6173961749
__webpack_require__(/*! ./style/aframe.css */ "./src/style/aframe.css");
6174061750
}
61741-
console.log('A-Frame Version: 1.7.1 (Date 2026-04-12, Commit #4e2c9403)');
61751+
console.log('A-Frame Version: 1.7.1 (Date 2026-04-14, Commit #5c4bdbfd)');
6174261752
console.log('THREE Version (https://github.com/supermedium/three.js):', _lib_three_js__WEBPACK_IMPORTED_MODULE_1__["default"].REVISION);
6174361753

6174461754
// 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 2026-04-12, Commit #4e2c9403)');
61+
console.log('A-Frame Version: 1.7.1 (Date 2026-04-14, Commit #5c4bdbfd)');
6262
console.log('THREE Version (https://github.com/supermedium/three.js):',
6363
THREE.REVISION);
6464

0 commit comments

Comments
 (0)