Changeset View
Changeset View
Standalone View
Standalone View
object_skinify.py
| Context not available. | |||||
| # ignore shoulder | # ignore shoulder | ||||
| if 'shoulder' in b.name.lower() and connect_mesh is True: | if 'shoulder' in b.name.lower() and connect_mesh is True: | ||||
| continue | continue | ||||
| # connect the upper arm directly with chest ommiting shoulders | # connect the upper arm directly with chest omitting shoulders | ||||
| if 'shoulder' in b.parent.name.lower() and connect_mesh is True: | if 'shoulder' in b.parent.name.lower() and connect_mesh is True: | ||||
| vert1 = b.head | vert1 = b.head | ||||
| vert2 = b.parent.parent.tail | vert2 = b.parent.parent.tail | ||||
| Context not available. | |||||
| def main(context): | def main(context): | ||||
| """ | """ | ||||
| This script will create a custome shape | This script will create a custom shape | ||||
| """ | """ | ||||
| # ### Check if selection is OK ### | # ### Check if selection is OK ### | ||||
| Context not available. | |||||