Is this what you need (select all objects and run)?: $objs = `ls -sl -fl`; for ($obj in $objs) { select $obj; ConvertSelectionToFaces; $buff = `ls -sl -fl`; polyProjection -ch 1 -type Planar -ibd on -kir -md b $buff; } select $objs; TextureViewWindow;
I have modeled this chair for a VR project, Please tell me your opinion and feedbacks :D For the ful project and Sketchfab: https://www.artstation.com/artwork/BNQkA
Is there a way to get a certain value from an array retun without first assigning the return to a variable? For instance, I'd like to use something like: `ls -sl -fl`[0]; instead of: $val = `ls -sl -fl`; $val[0]; Just seems like a waste to be creating variables for one time uses.