Ah yes ! Thanks guys.
2016-09-19 9:28 GMT+01:00 Frank Harrison :
> On 19 September 2016 at 09:26, Ben Dickson wrote:
>
>> You can use the func(**kwargs_dict) syntax to get around this:
>>
> +1 you beat me to it Ben :)
>
>
>>
>> shuffle = nuke.nodes.Shuffle (**{'label': layer,
>>
On 19 September 2016 at 09:26, Ben Dickson wrote:
> You can use the func(**kwargs_dict) syntax to get around this:
>
+1 you beat me to it Ben :)
>
> shuffle = nuke.nodes.Shuffle (**{'label': layer,
> 'in':layer,
>
You can use the func(**kwargs_dict) syntax to get around this:
shuffle = nuke.nodes.Shuffle (**{'label': layer,
'in':layer,
'postage_stamp': True})
On 19/09/16 17:47, Justin GD wrote:
Hi all,
Quick question,
Hi all,
Quick question, if I want to create a shuffle node with its 'in' parameter
set, I get an error from python as it interpret it as a keyword. How can I
bypass this ?
shuffle = nuke.nodes.Shuffle ( label = layer,
in = layer, <-- ERROR