Groups > Design > 3dsmax MAXScript > Re: Scripting Section Spline




Re: Scripting Section Spline

Re: Scripting Section Spline
Mon, 24 Sep 2007 17:39:32 +000
Hi Kenc, 
Your problem is that the sections is deleted in case you want to use it again,
right? If that's the case, why don't you create a copy of the section before you
convert it? 
Example:
i = 0
for s in $ do 
(
maxOps.cloneNodes s cloneType:#copy newNodes:&c

c.name = s.name
convertToSplineShape s
s.renderable = true
s.name = "plan" + i as string
i = i + 1
)

Hope that helps, 
Post Reply
about | contact