Skip to content

Commit 78e5841

Browse files
Bump aframe-master dist/ builds. (f2b7a83...763b3fe)
1 parent 763b3fe commit 78e5841

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dist/aframe-master.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18429,8 +18429,7 @@ module.exports.Component = registerComponent('rotation', {
1842918429
update: function () {
1843018430
var data = this.data;
1843118431
var object3D = this.el.object3D;
18432-
object3D.rotation.set(degToRad(data.x), degToRad(data.y), degToRad(data.z));
18433-
object3D.rotation.order = 'YXZ';
18432+
object3D.rotation.set(degToRad(data.x), degToRad(data.y), degToRad(data.z), 'YXZ');
1843418433
},
1843518434
remove: function () {
1843618435
// Pretty much for mixins.
@@ -24206,6 +24205,7 @@ class AEntity extends ANode {
2420624205
this.isEntity = true;
2420724206
this.isPlaying = false;
2420824207
this.object3D = new THREE.Group();
24208+
this.object3D.rotation.order = 'YXZ';
2420924209
this.object3D.el = this;
2421024210
this.object3DMap = {};
2421124211
this.parentEl = null;
@@ -30060,7 +30060,7 @@ __webpack_require__(/*! ./core/a-mixin */ "./src/core/a-mixin.js");
3006030060
// Extras.
3006130061
__webpack_require__(/*! ./extras/components/ */ "./src/extras/components/index.js");
3006230062
__webpack_require__(/*! ./extras/primitives/ */ "./src/extras/primitives/index.js");
30063-
console.log('A-Frame Version: 1.5.0 (Date 2024-04-05, Commit #863c0e6a)');
30063+
console.log('A-Frame Version: 1.5.0 (Date 2024-04-08, Commit #763b3fe7)');
3006430064
console.log('THREE Version (https://github.com/supermedium/three.js):', pkg.dependencies['super-three']);
3006530065
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);
3006630066

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.

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ require('./core/a-mixin');
7878
require('./extras/components/');
7979
require('./extras/primitives/');
8080

81-
console.log('A-Frame Version: 1.5.0 (Date 2024-04-05, Commit #863c0e6a)');
81+
console.log('A-Frame Version: 1.5.0 (Date 2024-04-08, Commit #763b3fe7)');
8282
console.log('THREE Version (https://github.com/supermedium/three.js):',
8383
pkg.dependencies['super-three']);
8484
console.log('WebVR Polyfill Version:', pkg.dependencies['webvr-polyfill']);

0 commit comments

Comments
 (0)