sethmisek
06-16-2005, 12:34 AM
I want 100 fluid emitters in my scene to be connected to the same fluid.
$i = 0;
while ($i < 100) {
connectDynamic -em ("fluidEmitter" + $i) fluid1;
$i++;
print $i;
}
After this script the dynamic relationship window shows them as connected but they dont emit into the fluid. Also tried reopening the scene after running the script they still show as connected but dont emit.
If i disconect and connect an emitter in the dynamic relationships window by hand it only works about half the time. How do i get this to update properly and actually be connected.
$i = 0;
while ($i < 100) {
connectDynamic -em ("fluidEmitter" + $i) fluid1;
$i++;
print $i;
}
After this script the dynamic relationship window shows them as connected but they dont emit into the fluid. Also tried reopening the scene after running the script they still show as connected but dont emit.
If i disconect and connect an emitter in the dynamic relationships window by hand it only works about half the time. How do i get this to update properly and actually be connected.
