-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcstWrappers.py
More file actions
58 lines (54 loc) · 2.56 KB
/
cstWrappers.py
File metadata and controls
58 lines (54 loc) · 2.56 KB
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
'''
these are the optional args and their default values for the keyed rig primitive
build functions
'''
PRIM_OPTIONS = { 'zooBuildControl': {},
'zooCSTBuildPrimBasicSpine': {},
#'parents': tuple(),
#'hips': '',
#'scale': 1.0,
#'spaceswitching': True,
#'colour': 'lightblue 0.65',
#'buildhips': True },
'zooCSTBuildPrimHead': {},
#'parents': tuple(),
#'headType': 'skingeometry',
#'neckType': 'pin',
#'colour': 'blue 0.92'
#'scale': 1.0,
#'orient': True,
#'spaceswitching': True,
#'pickwalking': True,
#'buildNeck': True,
#'neckCount': True },
'zooCSTBuildPrimArm': {},
#'parents': tuple(),
#'scale': 1.0,
#'buildclav': True,
#'spaceswitching': True,
#'pickwalking': True,
#'allPurpose': True,
#'stretch': False },
'zooCSTBuildPrimLeg': { #'parents': tuple(),
#'ikType': 'skingeometry',
#'allPurpose': True,
#'scale': 1.0,
#'spaceswitching': True,
#'pickwalking': True,
'stretch': False },
'zooCSTBuildPrimHand': { 'names': ("index", "mid", "ring", "pinky", "thumb"),
#'axes': ("#", "#", "#", "#", "#"),
#'colour': 'orange 0.65',
#'maxSlider': 90,
#'minSlider': -90,
#'maxFingerRot': 90,
#'minFingerRot': -90,
#'scale': 1.0,
'taper': 1.0,
#'pickwalking': True,
'num': 0,
#'invert': True,
'sliders': True,
'triggers': True,
'stretch': False } }
#end