Dear @Miquel @chrislesage , and developpers
Is it possible to build a custom component with different sides, such as Center, Left, and Right, as an individual component? I am currently working on creating a custom module for the brow/lip.
The mGear guide class does not support multiple sides in its comp_side
class attribute. Additionally, the guide class name must be a fixed name. To address this, I thought there was a need for a registry attribute where each guide class is dynamically registered during import. As a result, I can’t manage the various sides within the same component of the brow_01
package. What do you think about this approach?
I successfully constructed a guide rig for these sides using an approach where I included the GuideSide
class in the addObjects
method of the Guide
class. However, when I attempted to build the rig, I couldn’t generate the rig for the Guide
class, which corresponds to the Center brow rig, because I encountered an issue, Object missing
(as shown in the first image) which was that each guide instance came from the same Guide class. Eventually, they must be registered in some way rather than a fixed class name Guide to make it work.