Files
junisaber/src/components/toggle-pause-play.js
Kevin Ngo e94ab73212 lint
2018-10-13 17:19:36 -07:00

11 lines
271 B
JavaScript

AFRAME.registerComponent('toggle-pause-play', {
schema: {
isPlaying: { default: false }
},
update: function () {
const action = this.data.isPlaying ? 'pause' : 'play';
parent.postMessage(JSON.stringify({ verify: 'game-action', action }), '*');
}
});