Announcement

Collapse
No announcement yet.

MaxScript Help - Functions

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • MaxScript Help - Functions

    I've written some maxscript that clones selected splines within an editable spline.

    Code:
    SelectedSplines = getsplineselection $
    		TotalSplines = SelectedSplines.count
    		for CurrentSpline = 1 to TotalSplines do
    		(
    				addNewSpline $ 
    				NewSplineIndex = numSplines $
    				SplineIndex = SelectedSplines [CurrentSpline]
    				for KnotIndex = 1 to (numknots $ SplineIndex) do
    					(
    						VertexPos = getKnotPoint $ SplineIndex KnotIndex
    						addKnot $ NewSplineIndex #corner #line VertexPos
    					)
    				Close $ NewSplineIndex
    				updateshape $
    		)
    It works fine on its own but when I make it into a function it stops working

    Code:
    fn CloneSplines =
    	(
    		SelectedSplines = getsplineselection $
    		TotalSplines = SelectedSplines.count
    		for CurrentSpline = 1 to TotalSplines do
    		(
    				addNewSpline $ 
    				NewSplineIndex = numSplines $
    				SplineIndex = SelectedSplines [CurrentSpline]
    				for KnotIndex = 1 to (numknots $ SplineIndex) do
    					(
    						VertexPos = getKnotPoint $ SplineIndex KnotIndex
    						addKnot $ NewSplineIndex #corner #line VertexPos
    					)
    				Close $ NewSplineIndex
    				updateshape $
    		)
    	)
    CloneSplines
    I'm a bit new to maxscript and I'm probably doing something stupid can anybody help please.

    thanks.
    Dan Brew

  • #2
    You have to put parenthesis to the end of the function when it has no parameters: CloneSplines()

    Comment


    • #3
      Thanks!

      I told you I'd done something stupid.

      all working properly now..
      Dan Brew

      Comment


      • #4
        you are welcome

        Comment

        Working...
        X