probiner

CreateOffsetNulls

Dec 26th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. ## by missingkey
  2. si = Application
  3. sel = si.Selection
  4.  
  5. selList = []
  6. for each in sel:
  7.     offNull = each.AddNull( each.Name + "_Offset" )
  8.     si.ResetTransform( offNull )
  9.     selList.append( offNull )
  10.  
  11. si.SelectObj( selList )
Advertisement
Add Comment
Please, Sign In to add comment