J
JeffreyWalther
In Windows, I am using the command line (batch file) to select a camera and to render my Blender scene. This is done by using this snippet:
Now, I also would like to change the target within a "Target to" condition of an Empty object. I want the Empty to target to my "CAM_E" camera.
How can I do this? Thank you.
Code:
"D:\Blender\blender.exe" -b "Cockpit.blend" --python-expr "import bpy; bpy.context.scene.camera = bpy.context.scene.objects.get('CAM_E');" -o "X:\RenderOut\CAM_E" -s 1 -e 250 -a
Now, I also would like to change the target within a "Target to" condition of an Empty object. I want the Empty to target to my "CAM_E" camera.
How can I do this? Thank you.