# -*- coding: utf-8 -*-
"""
:author:
Jeremy Ernst
:description:
This module contains the class for defining the joint component. Just a simple joint you can use for things like
packs, pouches, or a clavicle. Wherever you may need a simple joint.
"""
import artv2.components.base_components.base_component as base
[docs]class Joint(base.ART_Component):
"""
This class defines and creates the joint component. Just a simple joint you can use for things like
packs, pouches, or a clavicle. Wherever you may need a simple joint.
"""
nice_name = "Joint"
category = "Primitives"
base_name = "joint"
has_sides = True
can_overwrite_names = True
joint_mover_file = "resources\\rigging_guides\\joint.ma"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
def _add_metadata(self, network_node, prefix, suffix):
super(Joint, self)._add_metadata(network_node, prefix, suffix)