Complete Grease Pencil vertex proximity gap
Some checks failed
M6 deployable RC / quick (push) Has been cancelled
M6 deployable RC / chromium (push) Has been cancelled
M6 deployable RC / release (push) Has been cancelled

This commit is contained in:
mes123456
2026-08-20 06:09:22 -04:00
parent 10640aeb3c
commit f2c49061a6
12 changed files with 195 additions and 35 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
import pathlib
import sys
import bpy
if __name__ == "__main__":
args = sys.argv[sys.argv.index("--") + 1:]
if len(args) != 1:
raise SystemExit("usage: blender -b --python M16-GAP-00071.py -- OUTPUT")
source = pathlib.Path(__file__).resolve().parents[3] / "tests/files/web/modifier_grease_pencil_scene.blend"
bpy.ops.wm.open_mainfile(filepath=str(source), load_ui=False)
bpy.ops.wm.save_as_mainfile(filepath=str(pathlib.Path(args[0]).resolve()), check_existing=False, compress=True)