Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (11d8805...36a53e7)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Nov 9, 2023
1 parent 36a53e7 commit ae83304
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -14166,6 +14166,7 @@ module.exports.Component = registerComponent('hand-tracking-controls', {
updateHandMeshModel: function () {
var jointPose = new THREE.Matrix4();
return function () {
var i = 0;
var jointPoses = this.jointPoses;
var controller = this.el.components['tracked-controls'] && this.el.components['tracked-controls'].controller;
if (!controller || !this.mesh) {
Expand All @@ -14175,9 +14176,7 @@ module.exports.Component = registerComponent('hand-tracking-controls', {
if (!this.hasPoses) {
return;
}
var inputjoints = controller.hand.values();
for (var i = 0; i < inputjoints.length; i++) {
var inputjoint = inputjoints[i];
for (var inputjoint of controller.hand.values()) {
var bone = this.getBone(inputjoint.jointName);
if (bone != null) {
this.mesh.visible = true;
Expand Down Expand Up @@ -30433,7 +30432,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.4.2 (Date 2023-11-09, Commit #8cb7226c)');
console.log('A-Frame Version: 1.4.2 (Date 2023-11-09, Commit #36a53e7c)');
console.log('THREE Version (https://github.com/supermedium/three.js):', pkg.dependencies['super-three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);
module.exports = window.AFRAME = {
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 @@ -92,7 +92,7 @@ require('./core/a-mixin');
require('./extras/components/');
require('./extras/primitives/');

console.log('A-Frame Version: 1.4.2 (Date 2023-11-09, Commit #8cb7226c)');
console.log('A-Frame Version: 1.4.2 (Date 2023-11-09, Commit #36a53e7c)');
console.log('THREE Version (https://github.com/supermedium/three.js):',
pkg.dependencies['super-three']);
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);
Expand Down

0 comments on commit ae83304

Please sign in to comment.