Models to Nulls

December 19, 2012

This script just converts XSI models into nulls – essentially just matching the null to the model, parenting it’s children to the null and deleting it. It’s filed here import win32com xsi = Application objs = win32com.client.Dispatch( "XSI.Collection" ) objs.AddItems (xsi.Selection) for i in objs: if i.Type == "#model": newNull = xsi.GetPrim("null", str(i) + "_null", … Read More

Move Objects into Background Partitions

December 19, 2012

So this is a script I wrote in order to automate putting objects into passes’ background partitions for either the active pass or multiple selected passes.  It is filed here # Move selected objects to background partitions # created by Gareth Bell # original created in VBScript 28-11-11 # converted to Python 26-07-2012 # Description: … Read More

Scripts Updates

December 19, 2012

Bear with me, I’m slowly getting the hang of this PageLines / WordPress format jazz…… I’m currently trying to organise this site so it’s kinda useful but struggling to get the functional/aesthetics balance right. I think that maybe the blog is the best way to update tools and scripts so these things can then get … Read More