Notifications
Clear all
[Closed] loop/quadrify all objects
Aug 18, 2011 5:43 pm
any ideas why the following script
for o in $* do (PolyToolsModeling.Quadrify false false)
does not work as expected and how to make it work?
PolyToolsModeling.Quadrify false false
on selection works np…
6 Replies
Aug 18, 2011 5:43 pm
PolyToolsModeling.Quadrify false false
mmmmmmm seems to only work on one object at a time perhaps denisT or Bobo might be able to clear things up, it’s stumped me as well
Aug 18, 2011 5:43 pm
I don’t have max2010 and up, so I can’t test it, but try this:
(may be the object have to be selected)
for o in geometry do
(
select o
PolyToolsModeling.Quadrify false false
)
1 Reply
Aug 18, 2011 5:43 pm
Hi,
if you only want it to selected object you can do
for o in selection do (
stuff
)
Aug 18, 2011 5:43 pm
for o in $* do (select o; PolyToolsModeling.Quadrify false false)
---
cursel = getcurrentselection()
for o in cursel do (select o; PolyToolsModeling.Quadrify false false)
select cursel
*forgot to refresh the page … but yes like miauu said…