Files
junisaber/src/components/tutorial-2d.js
2018-11-17 01:54:57 -08:00

11 lines
269 B
JavaScript

AFRAME.registerComponent('tutorial-2d', {
init: function () {
this.el.sceneEl.canvas.style.display = 'none';
},
play: function () {
this.el.sceneEl.canvas.style.display = 'block';
document.getElementById('tutorial2d').style.display = 'none';
}
});