How do you go about unblurring all materials in a scene? Is there a script or a plugin? Is this even a good idea or does something strange start to happen as a result of doing this?
Announcement
Collapse
No announcement yet.
Global Mats Unblur...
Collapse
X
-
Global Mats Unblur...
Tags: None
-
-
yeah... or some other value.
Comment
-
that would be a script, and its not vray related...I dont think it is anyways.Dmitry Vinnik
Silhouette Images Inc.
ShowReel:
https://www.youtube.com/watch?v=qxSJlvSwAhA
https://www.linkedin.com/in/dmitry-v...-identity-name
Comment
-
Comment
-
I didnt think Max Tips and TRicks was necessarily all vray-related too. Anyhow, I'm just being a pain in the ass sorry Ill move it out next time.
Comment
-
Hi,
for a start you could use something like this:
fn change_bitmap_filtering onwhat =
(try(
if onwhat.numsubs != 0 then
(
for i = 1 to onwhat.numsubs do
(
if onwhat[i] != undefined then
(
if iskindof onwhat[i] bitmaptexture == true then
(
onwhat[i].coords.blur = 0.01
)
)
change_bitmap_filtering onwhat[i]
)
)
)catch())
change_bitmap_filtering scenematerials
Hope this helps,,
Dieter--------
visit my developer blog
Comment
-
Dieter - thanks a lot. This really helps and I appreciate the time you took to do this script.
Comment
Comment