Florian von Behr

Results 13 comments of Florian von Behr

_None_ means right now that no machines pick up the job until someone assigns a pool by hand. Same pool as publish job would be preferable.

Right now the validator does accept bolleans. In fact you have to use True and False in the Pype settings if you want to validate any attribute that that only...

I still get the same error message even if I open the render settings before running validation.

It works as long as you render frame 1.

> @vonbehr what were the filenames you ended up with for that single frame? Did those differ from what @m-u-r-p-h-y described? If I render frame 0001 as a tile render,...

Maybe the way [openPipeline](http://openpipeline.cc/) handles this would be a good approach. In openPipeline the name of the master version never changes. Each time a new master version is published, 3...

No, I am afraid that debugging this is beyond my skill level.

Testsetup: - group1 |__ pCube1 `cmdx.listRelatives("pCube1")` returns None `cmds.listRelatives("pCube1")` returns [u'pCubeShape1'] `cmdx.listRelatives("pCube1", shapes=True)` returns None `cmds.listRelatives("pCube1", shapes=True)` returns [u'pCubeShape1'] `cmdx.listRelatives("pCube1", shapes=False)` returns None `cmds.listRelatives("pCube1", shapes=False)` returns [u'pCubeShape1'] `cmdx.listRelatives("group1", shapes=True)` returns...

> Could it be that for `cmds.listRelatives` the `shapes=True` argument defaults to True? The `shapes=True` flag only returns shape nodes. It defaults to False and then returns all nodes, including...

I would prefer if it would mimic Maya's cmds. I added the if statement to listRelatives. `cmdx.listRelatives("pCube1")` returns None while `cmdx.listRelatives("pCube1", shapes=True)` returns [|group1|pCube1|pCubeShape1], the whole hierarchy `cmdx.listRelatives("pCube1", children=True)` returns...