I have created a set of cards and I need to render 1000 pcs of same card but with just number changing inside the card.
In each render number in text object has to change from 100 - 1000 (1 render - 100, 2 render - 101, and so on until 1000)
Each render video (I render straight in mpeg4 as animation is only 75 frames long) has to have name in directory folder with relevant number
Each render has to start after previous one finishes.
Is there a way to automate these tasks using scripts?
Attached examples below.


Example:
bpy.data.objects["129"].hide_render = False bpy.context.scene.render.filepath = "/Users/.../129" bpy.ops.render.render(animation=True) bpy.data.objects["129"].hide_render = True
bpy.data.objects["130"].hide_render = False bpy.context.scene.render.filepath = "/Users/.../130" bpy.ops.render.render(animation=True) bpy.data.objects["130"].hide_render = True
– Ramiz Dzhavadov Dec 08 '21 at 04:23