Files
junisaber/src/components/menu-selected-challenge-image.js
2018-11-08 12:10:24 +08:00

16 lines
376 B
JavaScript

import utils from '../utils';
AFRAME.registerComponent('menu-selected-challenge-image', {
schema: {
selectedChallengeId: {type: 'string'}
},
update: function () {
const el = this.el;
if (!this.data.selectedChallengeId) { return; }
el.setAttribute(
'material', 'src',
utils.getS3FileUrl(this.data.selectedChallengeId, 'image.jpg'));
}
});