Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (b700ca6...c854fd5)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Jan 20, 2025
1 parent c854fd5 commit 7c2f162
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -5957,8 +5957,9 @@ module.exports.Component = registerComponent('anchored', {
frame = sceneEl.frame;
refSpace = xrManager.getReferenceSpace();
pose = frame.getPose(this.anchor.anchorSpace, refSpace);
object3D.matrix.elements = pose.transform.matrix;
object3D.matrix.decompose(object3D.position, object3D.rotation, object3D.scale);
// Apply position and orientation, leave scale as-is (see aframevr/aframe#5630)
object3D.position.copy(pose.transform.position);
object3D.quaternion.copy(pose.transform.orientation);
},
createAnchor: async function createAnchor(position, quaternion) {
var sceneEl = this.el.sceneEl;
Expand Down Expand Up @@ -24599,7 +24600,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 2025-01-12, Commit #fed48456)');
console.log('A-Frame Version: 1.6.0 (Date 2025-01-20, Commit #c854fd5e)');
console.log('THREE Version (https://github.com/supermedium/three.js):', THREE.REVISION);

// Wait for ready state, unless user asynchronously initializes A-Frame.
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 2025-01-12, Commit #fed48456)');
console.log('A-Frame Version: 1.6.0 (Date 2025-01-20, Commit #c854fd5e)');
console.log('THREE Version (https://github.com/supermedium/three.js):',
THREE.REVISION);

Expand Down

0 comments on commit 7c2f162

Please sign in to comment.