53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
import pathlib
|
|
import sys
|
|
|
|
import bpy
|
|
|
|
|
|
ARMATURE_NAME = "WebGapArmatureParentSetArmature"
|
|
OBJECT_NAME = "WebGapArmatureParentSetObject"
|
|
PARENT_BONE = "WebGapArmatureParentSetParent"
|
|
CHILD_BONE = "WebGapArmatureParentSetChild"
|
|
OTHER_BONE = "WebGapArmatureParentSetOther"
|
|
|
|
|
|
def main():
|
|
arguments = sys.argv[sys.argv.index("--") + 1 :]
|
|
if len(arguments) != 1:
|
|
raise SystemExit("usage: blender -b --factory-startup --python M16-GAP-00247.py -- OUTPUT")
|
|
bpy.ops.wm.read_factory_settings(use_empty=True)
|
|
armature = bpy.data.armatures.new(ARMATURE_NAME)
|
|
obj = bpy.data.objects.new(OBJECT_NAME, armature)
|
|
bpy.context.scene.collection.objects.link(obj)
|
|
bpy.context.view_layer.objects.active = obj
|
|
obj.select_set(True)
|
|
bpy.ops.object.mode_set(mode="EDIT")
|
|
parent = armature.edit_bones.new(PARENT_BONE)
|
|
parent.head = (0.0, 0.0, 0.0)
|
|
parent.tail = (0.0, 1.0, 0.0)
|
|
child = armature.edit_bones.new(CHILD_BONE)
|
|
child.head = (0.0, 1.0, 0.0)
|
|
child.tail = (0.0, 2.0, 0.0)
|
|
other = armature.edit_bones.new(OTHER_BONE)
|
|
other.head = (2.0, 0.0, 0.0)
|
|
other.tail = (2.0, 1.0, 0.0)
|
|
parent.select = True
|
|
parent.select_head = True
|
|
parent.select_tail = True
|
|
child.select = True
|
|
child.select_head = True
|
|
child.select_tail = True
|
|
other.select = False
|
|
other.select_head = False
|
|
other.select_tail = False
|
|
armature.edit_bones.active = parent
|
|
bpy.ops.object.mode_set(mode="OBJECT")
|
|
bpy.ops.wm.save_as_mainfile(
|
|
filepath=str(pathlib.Path(arguments[0]).resolve()), check_existing=False, compress=True
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|