Guidrawer is a utility tool for the rigging framework mGear. It is designed to assist "custom" guide drawing during rigging operations on Maya.
To install Guidrawer, follow these steps:
- Clone the repository:
$ git clone https://github.com/zebraed/guidrawer.git
- Navigate to the project directory:
$ cd guidrawer
- Place the "guidrawer" directory under the PYTHONPATH of Maya.
To use Guidrawer as GUI on Maya, follow these steps:
- Import the module:
import guidrawer.ui
- Call the show functions:
guidrawer.ui.show()
To use Guidrawer in your scripts on Maya, follow these steps:
- Import the module:
import guidrawer.drawer as drawer
- Initialize the Guidrawer object:
gd = drawer.Guidrawer()
- Load Component:
gd.load_component(componentType=COMPONENT_NAME)
- Call the drawing functions with args:
gd.create_guide(name, side, parentRoot, idx, **opt)