Hello @carolhmj,
Thanks for reply.
I found solution here, my question was very similar to this Generate several screenshot from scene and save it on cloud
and solution is
$(document).find(‘.camera-angle-radio’).each((i,v)=>{
setTimeout(()=>{
//camera position values (x,y,z), in form on object
const val = JSON.parse($(v).val());
designer.updateCameraAngle(val);
scene.render();
const download_name = val.title;
const percision = $(‘#precision-input’).val();
designer.takeScreenShot2(download_name+“-2”,percision);
}, 10000);
});
@sesseb Thank you so much for help