Change map property to entire scene

Hello - I want to be able to change values such as below to the entire scene. I use VRay materials. It would be nice if it can do it for every types of materials.

1- texmap diffuse filtering to the entire scene. There are three options.

Pyramidal .texmap_diffuse.filtering = 0
Summed Area .texmap_diffuse.filtering = 1
None .texmap_diffuse.filtering = 2

2- Change blur of ONLY diffuse maps to value I set.

.texmap_diffuse.coords.blur = (value i set)

3- Change Gamma on the map to value i define.

tmap.bitmap.inputGamma

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Stenrik's picture

Selected objects/materials only?

This is helpful, Pixamoon - thanks.

Now I'd like to apply this setting change ONLY to the materials of selected objects, and/or only highlighted materials in the editor. Is there an easy way to do this?

jahman's picture

.

..

Cabbage's picture

set filtering to none for entire scene

can anyone post a some code i can make a button out of to set all scene bitmaps to none filtering?

pixamoon's picture

`

sure, this will change bitmap filtering to None in entire scene

for o in getClassInstances BitmapTexture do o.filtering = 2

pixamoon's picture

gamma setting

Hi,

To change filtering for all bitmap in entire scene:

for o in getclassinstances BitmapTexture do o.filtering = 0

to change blur only in diffuse of VRayMtl:

for o in getclassinstances VRayMtl where o.texmap_diffuse != undefined and classof o.texmap_diffuse == bitmaptexture do 
o.texmap_diffuse.coords.blur = 1

But it works only if bitmap is just in diffuse slot. If its deeper (for eg in mix) it wont work anymore.

Similar to other types of materials (Standard, CoronaMtl etc)

To read gamma is easy but to change more complicated. But you can change gamma with my Bitmap Tracking/Resizing....
http://www.scriptspot.com/3ds-max/scripts/bitmap-tracking-resizing

Hope it helps,
Pixamoon

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.