Notifications
Clear all
[Closed] How to change "Extrude 25"?
Nov 07, 2008 12:54 pm
How to use Maxscript to change Extrude default 25.0?
For example, I use keyboard to add <Extrude>, and [font=‘Courier New’]default is 25.0. I modify amount is from 25.0 to 100.0,when I use <Extrude> once more, default still shows 25.0. How to make default to 100.0? Can Maxscript has this function? [/font]
Thanks for your help!
1 Reply
Nov 07, 2008 12:54 pm
if ($ != undefined) do (
-- instead of this
addmodifier $ (extrude())
-- try this
addModifier $ (extrude amount:100)
)