Bases: MayaCreator
Output for Ornatrix nodes
Source code in client/ayon_maya/plugins/create/create_ornatrix_rig.py
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 | class CreateOxRig(plugin.MayaCreator):
"""Output for Ornatrix nodes"""
identifier = "io.ayon.creators.maya.oxrig"
label = "Ornatrix Rig"
product_type = "oxrig"
icon = "usb"
description = "Ornatrix Rig"
def get_detail_description(self):
return inspect.cleandoc("""
### Ornatrix Rig
The Ornatrix rig creator allows you to publish a re-usable rig to
easily load your prepared Ornatrix hair/fur for an asset and apply
them elsewhere for simulation or rendering by connecting it to
the animated pointcaches.
The Ornatrix Rig instance object set should include the meshes with
the connected Ornatrix hairs, usually the `HairShape` with the
`EditGuidesShape`.
For more details, see the [AYON Maya Ornatrix Artist documentation](https://ayon.ynput.io/docs/addon_maya_ornatrix_artist/).
""" # noqa
)
|