Hi Paul, welcome back to the openmc community.
have you tried to append the projection plot into an openmc.Plots()?
plot_file = openmc.Plots()
r = ...
for i in range(100):
phi = 2 * np.pi * i/100
thisp = openmc.ProjectionPlot(plot_id = 200 + i)
thisp.filename = 'frame%s'%(str(i).zfill(3))
thisp.look_at = [x,y,z coordinate]
thisp.camera_position = [r * np.cos(phi), r * np.sin(phi), 6 * np.sin(phi)]
thisp.pixels = [200, 200]
thisp.color_by = 'material'
thisp.colorize(geometry)
thisp.set_transparent(geometry)
...
plot_file.append(thisp)
plot_file.export_to_xml()
openmc.plot_geometry()
also, I hope this topic can help you