Re: [Nuke-python] Nuke in-line node creation and python keywords

2016-09-19 Thread Justin GD
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, >>

Re: [Nuke-python] Nuke in-line node creation and python keywords

2016-09-19 Thread 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, > 'in':layer, >

Re: [Nuke-python] Nuke in-line node creation and python keywords

2016-09-19 Thread Ben Dickson
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,