I've only a basic knowledge of 3D Max. I'm creating a plane using MaxScript, converting it to an editable Poly and then extruding certain faces. The thing is, I only have 16 faces to work from. Is there a way to have more than 16 faces?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You would have to define it before you do your conversion to poly.

The syntax shown in the listener for adding segments is:

$.lengthsegs = 20
$.widthsegs = 20

So for your script just add this right below your line where you define your plane:

yPlane.lengthsegs =20 --any number of segments 
yPlane.widthsegs = 20 --any number of segments 

this makes it more "bulletproof", since when using $ it means any selected object.

By using "yplane" variable we make sure it only affects this object.

link|improve this answer
Sorry, added my code to the main text! – Wayne Whitty Dec 14 '10 at 12:37
Thanks for the code! It worked! I spent ages googling! – Wayne Whitty Dec 14 '10 at 12:42
just add this right below your line where you define your plane: yPlane.lengthsegs =20 --any number of segments yPlane.widthsegs = 20 --any number of segments this makes it more "bulletproof" since when using $ it means any selected object, by using "yplane" we make sure it only affects this object. – hedphelym Dec 14 '10 at 12:49
feedback

And in case you have similar questions in the future, just turn on the MAXScript macro recorder and perform the edit in the 3ds Max UI. Most of the times, the recorder will show you the MAXScript code for your action.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.