2008-05-08

Boxmode Toggle

When ever I format my PC, I always forget to back up these maxscripts. Then it takes some precious time to figure out how I wrote it. These three maxscripts are the life savers for "draw in Autocad, render in 3ds Max" kind of people.

Here I'll share them with the rest of the world. (And no more rewriting!)

macroScript Box_Toggle
category:"www.taskisla.com"
toolTip:"Boxmode Toggle"
(
polat = selection as array
for d = 1 to polat.count do
(

if polat[d].boxmode == true then
(
polat[d].boxmode = false
print polat[d].boxmode
)
Else
(
polat[d].boxmode = true
print polat[d].boxmode
)
)
)

No comments:

Post a Comment

Your comment is greatly appreciated!!!