Spawn A-Frame entities from a point.
npm install aframe-spawnpoint-component


Spawn A-Frame entities from a point.
For A-Frame.
| Property | Description | Default Value |
| -------- | ----------- | ------------- |
| size | pool size | 10 |
| pattern | random, even | random |
| origin | Origin of the spawn pattern | {x: 0, y: 0, z: 0} |
| radius | Radius around the origin | 10 |
| enableY | Enable random on y-axis | false |
| rate | How often to spawn, in milliseconds. If 0, spawn all at once. | 0 |
#### Browser
Install and use by directly including the browser files:
``html
#### npm
Install via npm:
`bash
npm install aframe-spawnpoint-component
`Then require and use.
`js
require('aframe');
require('aframe-spawnpoint-component');
``