[Closed] Extrude Script
Hi I need to create a 3ds script, I want to create a script where to create a dialog window where I can put different measurements to create different extrudes. I´ve tried but it doesnt work
.
please post code instead of screenshots, also it is not clear what you are after.
moreover you can’t have 4 spinners with the same parameter name (growth)
another control is named create but you wrote (on createD pressed)
so i think you should tackle those problems beforehand
Hi,I want to create a button to create a dialogue screen and I can create different extrudes with different sizes but I am new doing 3ds Max scripts and I dont know how to do it
rollout ExtrudeTool “Extrude”
(
spinner growth “Extrude_1” range: [0,100,0]
spinner growth “Extrude_2” range: [0,100,0]
spinner growth “Extrude_3” range: [0,100,0]
spinner growth “Extrude_4” range: [0,100,0]
button create “Create Extrudes”
on created pressed do
macros.run "Modifiers" "EditPolyMod"
$.modifiers[#Edit_Poly].SelectByAngle = 45
$.modifiers[#Edit_Poly].SetSelection #Face #{}
$.modifiers[#Edit_Poly].Select #Face #{1}
$.modifiers[#Edit_Poly].SetOperation #ExtrudeFace
$.modifiers[#Edit_Poly].extrudeFaceHeight = growth.value
)
createDialog ExtrudeTool
try (destroydialog ExtrudeTool) catch();
rollout ExtrudeTool "Extrude"
(
spinner growth_1 "Extrude_1" range: [0,100,0]
spinner growth_2 "Extrude_2" range: [0,100,0]
spinner growth_3 "Extrude_3" range: [0,100,0]
spinner growth_4 "Extrude_4" range: [0,100,0]
button create "Create Extrudes"
fn Extrudefn amount = ( $.modifiers[#Edit_Poly].getselection #Face
$.modifiers[#Edit_Poly].SetOperation #ExtrudeFace
$.modifiers[#Edit_Poly].extrudeFaceHeight = amount.value
$.modifiers[#Edit_Poly].Commit ())
on create pressed do
(
Extrudefn growth_1
Extrudefn growth_2
Extrudefn growth_3
Extrudefn growth_4
)
)
createDialog ExtrudeTool
this should do the basic thing you need, it will not add the edit poly modifier, nor it will check if is a valid modifier it wont skip zero extrusion faces, i encourage you to try understand the script and most importantly
try to read the reference and example scripts, and try to look at other’s scripts. try to avoid the macro recorder the more you can and not use $ references as much as you can
read about modifiers and all that, this code is based on your first post, it does what you need but is not a good code
ps it will work only if you have the faces already selected by hand
Thanks you for the code, where can I learn about the 3ds Max scripts? and how I can improve my script?
Thank you!
try to see if when you press the button there is an edit poly modifier or not and ask the user if he wants to add one
there are sample codes for almost everything