Files
junisaber/src/components/keyboard-raycastable.js

13 lines
335 B
JavaScript
Raw Normal View History

2018-07-18 20:48:45 +02:00
AFRAME.registerComponent('keyboard-raycastable', {
2018-07-20 15:42:47 +02:00
dependencies: ['super-keyboard'],
2018-11-18 02:01:47 -08:00
schema: {
condition: {default: ''}
},
2018-07-20 15:42:47 +02:00
play: function () {
2018-07-21 11:55:44 +02:00
this.el.components['super-keyboard'].kbImg.setAttribute('bind-toggle__raycastable',
2018-11-18 02:01:47 -08:00
this.data.condition);
2018-10-13 17:19:36 -07:00
}
2018-07-18 20:48:45 +02:00
});