/ Published in: Maxscript
                    
                                        
Select all objects with a VrayDisplaceMod on them
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
displaced_objects =#()
for o in $* do
(
if o.modifiers.count != 0 then
(
if o.modifiers[#VrayDisplacementMod] != undefined then
(
append displaced_objects o
)
)
)
select displaced_objects
Comments
 Subscribe to comments
                    Subscribe to comments
                
                