<div dir="ltr">I am trying to output an animation using batch mode in stereo. I want to output one set of images for the left eye and one for the right eye. In my script, I tried to do this by setting view.StereoType = "Left" or "Right". However, this doesn't work; both produce identical output.<div><br></div><div>Can you give me some advice? Script is below. I am executing this with pvbatch.<br><div><br><div><br></div><div><div>import os</div><div>paraview.simple._DisableFirstRenderCameraReset()</div><div><br></div><div>state_dir = '/scratch/Paraview/hurricane/long_hourly_rotating/try4'<br></div><div>fname = 'filter_pre_render.pvsm'</div><div>st = 'left'</div><div># or</div><div># st = 'right'</div><div><br></div><div><br></div><div>servermanager.LoadState(os.path.join(state_dir, fname))</div><div>outdir = '/scratch/Paraview/hurricane/long_hourly_rotating/output/top_view/' + st</div><div>view = GetRenderView()</div><div>view.ViewSize = [1920, 1080]</div><div>view.StereoType = st.capitalize()</div><div>SetActiveView(view)</div><div>Render()</div><div>WriteAnimation(os.path.join(outdir, 'top_view_%s.png' % st))</div></div></div></div></div>