-
Notifications
You must be signed in to change notification settings - Fork 5
/
AEOpenVDBFromMayaFluidTemplate.mel
222 lines (175 loc) · 6.12 KB
/
AEOpenVDBFromMayaFluidTemplate.mel
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
global proc AEOpenVDBFromMayaFluidTemplate( string $nodeAttr )
{
editorTemplate -beginScrollLayout;
{
editorTemplate -beginLayout "OpenVDB Conversion Settings" -collapse 0;
editorTemplate -beginNoOptimize;
{
editorTemplate
-annotation "Select a Maya Fluids Shape node"
-addControl "FluidNodeName";
editorTemplate -addSeparator;
editorTemplate -callCustom "newOpenVDBFromMayaFluidUI" "replaceOpenVDBFromMayaFluidUI" "Density";
}
editorTemplate -endNoOptimize;
editorTemplate -endLayout;
editorTemplate -addExtraControls;
}
editorTemplate -endScrollLayout;
}
global proc newOpenVDBFromMayaFluidUI( string $attr )
{
global int $gAttributeEditorTemplateLabelWidth;
int $fieldWidth = 200;
int $toggleWidth = 20;
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
densityLayout;
{
text -label "Density" densityLabel;
textField
-annotation "Specify a name for the output VDB."
densityName;
checkBox -label ""
-annotation "Convert the density field."
densityToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
temperatureLayout;
{
text -label "Temperature" temperatureLabel;
textField
-annotation "Specify a name for the output VDB."
temperatureName;
checkBox -label ""
-annotation "Convert the temperature field."
temperatureToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
pressureLayout;
{
text -label "Pressure" pressureLabel;
textField
-annotation "Specify a name for the output VDB."
pressureName;
checkBox -label ""
-annotation "Convert the pressure field."
pressureToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
fuelLayout;
{
text -label "Fuel" fuelLabel;
textField
-annotation "Specify a name for the output VDB."
fuelName;
checkBox -label ""
-annotation "Convert the fuel field."
fuelToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
falloffLayout;
{
text -label "Falloff" falloffLabel;
textField
-annotation "Specify a name for the output VDB."
falloffName;
checkBox -label ""
-annotation "Convert the falloff field."
falloffToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
velocityLayout;
{
text -label "Velocity" velocityLabel;
textField
-annotation "Specify a name for the output VDB."
velocityName;
checkBox -label ""
-annotation "Convert the velocity field."
velocityToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
colorLayout;
{
text -label "Color" colorLabel;
textField
-annotation "Specify a name for the output VDB."
colorName;
checkBox -label ""
-annotation "Convert the color field."
colorToggle;
setParent ..;
}
rowLayout
-numberOfColumns 3
-columnWidth3 $gAttributeEditorTemplateLabelWidth $fieldWidth $toggleWidth
-columnAttach3 "right" "both" "both"
-columnAlign3 "left" "left" "left"
coordinatesLayout;
{
text -label "Coordinates" coordinatesLabel;
textField
-annotation "Specify a name for the output VDB."
coordinatesName;
checkBox -label ""
-annotation "Convert the coordinates field."
coordinatesToggle;
setParent ..;
}
replaceOpenVDBFromMayaFluidUI($attr);
}
global proc replaceOpenVDBFromMayaFluidUI( string $attr )
{
setParent densityLayout;
string $nodeName = plugNode($attr);
connectControl densityToggle $attr;
connectControl densityName ($nodeName + ".DensityName");
connectControl temperatureToggle ($nodeName + ".Temperature");
connectControl temperatureName ($nodeName + ".TemperatureName");
connectControl pressureName ($nodeName + ".PressureName");
connectControl pressureToggle ($nodeName + ".Pressure");
connectControl fuelName ($nodeName + ".FuelName");
connectControl fuelToggle ($nodeName + ".Fuel");
connectControl falloffName ($nodeName + ".FalloffName");
connectControl falloffToggle ($nodeName + ".Falloff");
connectControl velocityName ($nodeName + ".VelocityName");
connectControl velocityToggle ($nodeName + ".Velocity");
connectControl colorName ($nodeName + ".ColorsName");
connectControl colorToggle ($nodeName + ".Color");
connectControl coordinatesName ($nodeName + ".CoordinatesName");
connectControl coordinatesToggle ($nodeName + ".Coordinates");
}