UNPKG

networked-aframe

Version:

A web framework for building multi-user virtual reality experiences.

15 lines (13 loc) 275 B
/* global AFRAME */ AFRAME.registerComponent('remove-in-seconds', { schema: { default: 1 }, init: function() { setTimeout(this.destroy.bind(this), this.data * 1000); }, destroy: function() { var el = this.el; el.parentNode.removeChild(el); } });