NYU_Animation
NYU_Animation
About Me
Connect
LOCATION
Not Specified
WEBSITE
Houdini Skills
Availability
Not Specified
Recent Forum Posts
Delayed Load Procedural shader and fileMerge question Dec. 4, 2014, 3:02 a.m.
Thanks for the quick reply, Mark, but I'm new to packed primitives and so am not clear on how your suggestion solves my problem. If the files are saved as a sequence of bgeo files with naming like I indicated, I would still need to get them into the application, and so far it seems the only way to do that is thru the fileMerge, which can handle files named "scn02_sh06_${CLUSTER}_$F4.bgeo .
Apologies if I'm missing something - am reading up on packed prims now so maybe I'll understand your suggestion better in a day or two.
Apologies if I'm missing something - am reading up on packed prims now so maybe I'll understand your suggestion better in a day or two.
Delayed Load Procedural shader and fileMerge question Dec. 3, 2014, 11:39 a.m.
Hello all,
I've got a smoke trail written out as a bgeo sequence, but it was created using clusters through HQUEUE, so AFAIK the files can only be read back in using a fileMerge. The file naming for the fileMerge is scn02_sh06_${CLUSTER}_$F4.bgeo, with the Merge Variable set to “CLUSTER”.
Does anyone know if there is a way to get the Delayed Load Procedural to read this sequence in? I've tried a number of variations for the FileName syntax but figure it's not working because the DLP can only read one file at a time.
Thanks for any tips!
I've got a smoke trail written out as a bgeo sequence, but it was created using clusters through HQUEUE, so AFAIK the files can only be read back in using a fileMerge. The file naming for the fileMerge is scn02_sh06_${CLUSTER}_$F4.bgeo, with the Merge Variable set to “CLUSTER”.
Does anyone know if there is a way to get the Delayed Load Procedural to read this sequence in? I've tried a number of variations for the FileName syntax but figure it's not working because the DLP can only read one file at a time.
Thanks for any tips!
Mantra command line arguments and IFD June 13, 2014, 2:19 p.m.
Hi Glassman3d, I just heard back from SESI and they suggested this:
import mantra
def filterInstance():
name = mantra.property('object:name')
if name == ‘/obj/grid_object1’:
mantra.setproperty('renderable', 0)
… which makes sense now that I see it.
Thanks for all your help!!
*EDIT* Anyone wanting to pass additional commands along through the Deadline Mantra submission script, don't start the command with “mantra”, start it with the first argument. Mine looks like
-P //Server/MainDirectory/pythonScript.py
import mantra
def filterInstance():
name = mantra.property('object:name')
if name == ‘/obj/grid_object1’:
mantra.setproperty('renderable', 0)
… which makes sense now that I see it.
Thanks for all your help!!
*EDIT* Anyone wanting to pass additional commands along through the Deadline Mantra submission script, don't start the command with “mantra”, start it with the first argument. Mine looks like
-P //Server/MainDirectory/pythonScript.py