Notifications
Clear all

[Closed] How to change "Extrude 25"?

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

if ($ != undefined) do (
-- instead of this
addmodifier $ (extrude())
-- try this
addModifier $ (extrude amount:100)
)