-- Remove Opacity Map Filtering -- Christopher Grant, www.christophergrant.com -- Description: disables opacity map filtering on selected objects (speeds up rendering with raytrace renderers like VRay) -- -- REQUIRES: neil blevins script pack to work. http://www.neilblevins.com/soulburnscripts/SoulCollection_v047.zip if selection.count != 0 then ( mats = sLibGetAllMaterialsOnSelectedObjects() for m in mats do try ( if classof m == Standardmaterial then if m.opacitymap != undefined AND classof m.opacitymap==Bitmaptexture then ( m.opacitymap.filtering=2 ) if classof m == VRayMtl then if m.texmap_opacity != undefined AND classof m.texmap_opacity==Bitmaptexture then ( m.texmap_opacity.filtering=2 ) ) catch() )