# -*- coding: utf-8 -*-
"""
This module contains the class for the root component class, which serves as the master control and root joint of the
rig and skeleton. Every asset will always have a root component.
"""
import artv2_components.base_components.base_component as artv2
[docs]class Root(artv2.ART_Component):
"""
The root rig component class serves as the master control and root joint of the rig and skeleton. Every asset
will always have a root component.
"""
nice_name = "Master"
base_name = "master"
has_sides = False
joint_mover_file = "resources\\rigging_guides\\root.ma"
def __init__(self, prefix="", suffix="", network_node=None):
super(Root, self).__init__(prefix, suffix, network_node)
def _add_metadata(self, network_node, prefix, suffix):
super(Root, self)._add_metadata(network_node, prefix, suffix)