UNPKG

networked-aframe

Version:

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

10 lines (9 loc) 240 B
/* global AFRAME */ AFRAME.registerComponent('randomize-show-child', { schema: {}, init: function() { var num = this.el.children.length var r = Math.floor(Math.random() * num); this.el.setAttribute('show-child', r); } });