Skip to content

Commit

Permalink
Bump aframe-master dist/ builds. (61f6442...924dc00)
Browse files Browse the repository at this point in the history
  • Loading branch information
SupermediumBot committed Nov 23, 2023
1 parent 924dc00 commit e67d337
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions dist/aframe-master.js
Original file line number Diff line number Diff line change
Expand Up @@ -25416,7 +25416,7 @@ class AEntity extends ANode {
var i;
var name;
var componentsToUpdate = this.componentsToUpdate;
if (!this.hasLoaded) {
if (!this.hasLoaded && !this.sceneEl) {
return;
}

Expand Down Expand Up @@ -25532,7 +25532,7 @@ class AEntity extends ANode {
var key;

// Already playing.
if (this.isPlaying || !this.hasLoaded) {
if (this.isPlaying || !this.hasLoaded && !this.sceneEl) {
return;
}
this.isPlaying = true;
Expand Down Expand Up @@ -26190,11 +26190,11 @@ class ANode extends HTMLElement {
warn('Rendering scene with errors on node: ', result.reason.target);
}
});
self.hasLoaded = true;
self.setupMutationObserver();
if (cb) {
cb();
}
self.hasLoaded = true;
self.emit('loaded', undefined, false);
});
}
Expand Down Expand Up @@ -26631,7 +26631,7 @@ Component.prototype = {

// Just cache the attribute if the entity has not loaded
// Components are not initialized until the entity has loaded
if (!el.hasLoaded) {
if (!el.hasLoaded && !el.sceneEl) {
this.updateCachedAttrValue(attrValue);
return;
}
Expand Down Expand Up @@ -30719,7 +30719,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.5.0 (Date 2023-11-17, Commit #d43ce42d)');
console.log('A-Frame Version: 1.5.0 (Date 2023-11-23, Commit #924dc00e)');
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.5.0 (Date 2023-11-17, Commit #d43ce42d)');
console.log('A-Frame Version: 1.5.0 (Date 2023-11-23, Commit #924dc00e)');
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 e67d337

Please sign in to comment.