-
Notifications
You must be signed in to change notification settings - Fork 12
/
info.json
69 lines (67 loc) · 2.73 KB
/
info.json
1
2
3
4
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"utc_build_time": "2022-05-15 17:00:47.477132",
"icon_paths": ["icons"],
"pip": ["pymel"],
"shelf_items": [
{
"command": "import pdil.tool.fossil.main\npdil.alt.call('Rig Tool')()",
"image": "skeletonTool.png",
"annotation": "Open fossil rigging tool"
},
{
"image": "zeropose.png",
"annotation": "Zero all (or the selected) controllers",
"command": "import pdil.tool.fossil.userTools;pdil.alt.call('Zero Controllers')()"
},
{
"image": "selectAllControls.png",
"annotation": "Select All Controllers",
"command": "import pdil.tool.fossil.userTools;pdil.alt.call('Select All Controllers')()"
},
{
"image": "quickHideControls.png",
"annotation": "Similar to 'Isolated Selected' but just for rig controls",
"command": "import pdil.tool.rigControls;pdil.alt.call('Quick Hide Controls')()"
},
{
"image": "pythonFamily.png",
"imageOverlayLabel": "SelBnd",
"annotation": "Select Bindable joints",
"command": "import pdil.tool.fossil.userTools;pdil.alt.call('Select Bindable Joints')()"
},
{
"image": "saveCurve.png",
"annotation": "Save animation curves",
"command": "import pdil.tool.fossil.userTools;pdil.alt.call('Save Curves')()"
},
{
"image": "loadCurve.png",
"annotation": "Load animation curves",
"command": "import pdil.tool.fossil.userTools;pdil.alt.call('Load Curves')()"
},
{
"image": "storeSkinWeights.png",
"imageOverlayLabel": "L",
"annotation": "Save the weights of the selected object in memory for use in this maya session.",
"command": "import pdil.tool.misc;pdil.alt.call('Save Weights Locally')()"
},
{
"image": "restoreSkinWeights.png",
"imageOverlayLabel": "L",
"annotation": "Load weights saved in memory",
"command": "import pdil.tool.misc;pdil.alt.call('Load Weights Locally')()"
},
{
"image": "storeSkinWeights.png",
"imageOverlayLabel": "CB",
"annotation": "Save the weights of the selected objects to clipboard text",
"command": "import pdil.tool.misc;pdil.alt.call('Save Weights To Clipboard')()"
},
{
"image": "restoreSkinWeights.png",
"imageOverlayLabel": "CB",
"annotation": "Load weights from the clibboard",
"command": "import pdil.tool.misc;pdil.alt.call('Load Weights From Clipboard')()"
}
]
}