Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 413 Bytes

Step5.md

File metadata and controls

21 lines (19 loc) · 413 Bytes

WebXR NL Workshop

Step 5

Custom Component

AFRAME.registerComponent('change-color', {schema: {color: {default: 'green'}},​
​
  init: function () {this.el.addEventListener('click',() => {this.el.setAttribute('material', 'color', this.data.color);})}});
<a-sphere color="blue" change-color="color:pink"...​