24 lines
732 B
Python
24 lines
732 B
Python
#!/usr/bin/env python3
|
|
import pathlib
|
|
import sys
|
|
|
|
import bpy
|
|
|
|
|
|
def main(output: pathlib.Path) -> None:
|
|
bpy.ops.wm.read_factory_settings(use_empty=True)
|
|
volume = bpy.data.volumes.new("WebGapVolume")
|
|
volume.filepath = "//WebGapVolume.vdb"
|
|
volume.display.density = 2.5
|
|
volume.display.interpolation_method = "CLOSEST"
|
|
volume.render.step_size = 0.125
|
|
volume.use_fake_user = True
|
|
bpy.ops.wm.save_as_mainfile(filepath=str(output.resolve()), check_existing=False, compress=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
arguments = sys.argv[sys.argv.index("--") + 1 :]
|
|
if len(arguments) != 1:
|
|
raise SystemExit("usage: blender -b --python M16-GAP-00026.py -- OUTPUT")
|
|
main(pathlib.Path(arguments[0]))
|