Using babylon serverside like a CRON

Hello Everyone,
I have combinations of meshes and materials, say, 3 meshes and 10 materials. I want to apply these 10 materials one by one on each mesh so it will create 30 renders in total. Then I want to export whatever is rendered as an image one by one and I am also performing some database operations for material and mesh records.
My question is, can I do this serverside as a CRON job without browser involvement so that the user does not have to wait for the renders and will get all the exports once I finish the CRON job.

I think this might help Rendering Scenes On A Remote Server | Babylon.js Documentation

2 Likes

Thank you. I will try this and let you know.