RenderMask

374 votes
Version: 
5.90.0
Date Updated: 
09/03/2018
Author Name: 
Ivan Tepavicharov

Render different types of masks (Luminance, RGB, Reflection, Lights/Shadows, ObjectsID, SSS, Texture, AO, ZDepth, Specular, Refraction). The script don't affect the scene materials, lights and render settings.
(this version support only V-Ray render engine)

 Version: 5.90.0

  • add support "V-Ray Next" (this version support only V-Ray render engine)

 

Additional Info: 

Category "IllusionBoxStudio"

Version Requirement: 
3dsmax 2012 - 2019

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
istratebogdanpeter@yahoo.com's picture

VrayRT support

Hi mate,

Will this great plugin get support for VrayRT any time soon ?
Thanks.

Regards,
Peter.

kritikoskostas's picture

luminance dont work with keep opacity map

If I have more than one object in the scene which covers the subject I want to do the mask, opacity map works as if you've applied to all objects.
Even if I have two objects with different opacity map again to mask apply one of the two maps.
Thank you in advance for your solution to this problem.

pastilan2014's picture

Anybody else in this world

Anybody else in this world needs a stable life. - Marla Ahlgrimm

1rv's picture

Ivan, many thanks for really

Ivan, many thanks for really amazing tool.
May I ask you what render settings should be used to achieve this level of antialiasing? I simply can't get this quality in my VrayWireColor, VrayMtlSelect and other passes.
Thank you in advance.

bobmorane888's picture

Deactivate effects on mask render ?

Hi, you're script is a real timesaver !
Thanks for sharing it !

I was wondering if you could add the environment's effects deactivation when rendering a mask ?
(For example, pass renders white when having a fog in the Environment)

And maybe set the background to white for AO and Shadow pass (Easier when blending it in Photoshop)

I managed to make it simply by putting a line in your script:
if mask_type_rdo.state == 6 or mask_type_rdo.state == 10 then (backgroundColor = white) else (backgroundColor = black)

but it's not perfect with the Shadow Pass ; background renders transparent gray because of the VrayColorMapping...

MaximuM's picture

Opacity map doesn't work with Multi/Sub object

Hi,

Your script is great but the "Keep OpacityMap" option doesn't work with Multi/Sub-Object materials (VRay 3, 3dsmax Design 2015). I see I am not the only person interested by this feature.

Do you plan to update it ?
It would be much appreciated :D

Thank you

Ivan Tepavicharov's picture

No....

No....

titane357's picture

Any chance to have an Octane render workflow ?

Any chance to have an Octane render workflow ?

kritikoskostas's picture

problem with keep opacity map

don't work with keep opacity map! test with 3ds max 2014 & vray3.03. pleaase help!!!

real08121985's picture

Problem with Opacity on Multisubtextures

Hi, awesome script, I use it daily at work and it helps alot!

One problem: When I render a mask of a multisubmaterial object then opacity maps will not be masked correctly. Your script applies one opacity mask to the whole object, not only the material id the opacity map belongs to. Here is a possible fix for the "White Material -- Luminance" section, but it doesnt always work:

	local multisub = multisubmaterial numsubs:i.mat.materialList.count
	for n=1 to i.mat.materialList.count do
	(
		local standardmat = StandardMaterial diffuse:white selfIllumAmount:100
		standardmat.opacityMap = i.mat.materialList[n].texmap_opacity
		multisub.materialList[n] = standardmat
	)
	i.material = multisub

Comment viewing options

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