A STL Exporter component for A-Frame.
Property | Description | Default Value |
---|---|---|
verbose | Log the STL output to the console | false |
Install and use by directly including the browser files:
<head>
<title>My A-Frame Scene</title>
<script src="https://aframe.io/releases/0.9.2/aframe.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aframe-stl-exporter-component.min.js"></script>
</head>
<body>
<a-scene>
<a-entity stl-exporter></a-entity>
</a-scene>
</body>
Usage on your component:
sceneEl.systems['stl-exporter'].export(input, options);
The function accepts severals different input
values:
- None (export the whole scene)
- One entity
More information about the component and its options could be found on the three.js STLExporter
Install via npm:
npm install aframe-stl-exporter-component
Then require and use.
require('aframe');
require('aframe-stl-exporter-component');