Open mwestphal opened 2 years ago
I think it's out of scope, one can just do:
for f in ./files/*; do
f3d $f --output=output_$f.png
done
Still, current behavior is not super nice:
f3d ./files/* --output=output.png
output a screenshot of the first file.
@Meakk @snoyer I'm thinking of closing this. nobody ever requested it and I think #46 is more important anyway. What do you think ?
Need #653 to move forward
I think --output
should just warn if there's model files that haven't used in the render.
However if you really want multiple outputs you could use a templating mechanism as proposed in #1194 so that f3d a.gltf b.gltf --output={model}.png
generates a.glft.png
and b.gltf.png
eg :
f3d ./files/* --output=output.png
Could create output_0.png, output_1.png ...