Files
junisaber/src/components/tutorial-2d.js

11 lines
269 B
JavaScript
Raw Normal View History

2018-11-16 16:57:29 +01:00
AFRAME.registerComponent('tutorial-2d', {
2018-11-17 01:54:57 -08:00
init: function () {
this.el.sceneEl.canvas.style.display = 'none';
},
2018-11-16 16:57:29 +01:00
play: function () {
2018-11-17 01:54:57 -08:00
this.el.sceneEl.canvas.style.display = 'block';
2018-11-16 16:57:29 +01:00
document.getElementById('tutorial2d').style.display = 'none';
}
});