Files
junisaber/src/components/keyboard-raycastable.js
2018-11-20 03:56:37 -08:00

13 lines
335 B
JavaScript

AFRAME.registerComponent('keyboard-raycastable', {
dependencies: ['super-keyboard'],
schema: {
condition: {default: ''}
},
play: function () {
this.el.components['super-keyboard'].kbImg.setAttribute('bind-toggle__raycastable',
this.data.condition);
}
});