it is possible to export an a-frame project to a 360 ° image

Viewed 125

I wanted to know if it is possible to export a project made in a-frame to a jpg / png image with the correct metadata to show them in flicker or facebook.

2 Answers

You can make a 360° (equirectangular) screenshot by simply pressing:
<ctrl> + <alt> + <shift> + s

A-frame's simple scene: enter image description here

You have to use three.js api for that - create a cubemap camera, capture a frame from it and then you can convert a cubemap to equirectangular. One of projects that does just this is https://github.com/imgntn/j360

Related