This page gives information about V-Ray Bake Elements that can be output when rendering to textures in 3ds Max.

Overview


The Render to Texture feature in 3ds Max includes several V-Ray output elements (bake elements) in addition to the standard 3ds Max output elements. These V-Ray bake elements correspond to V-Ray Render Elements.

 

Rendering menu > Render To Texture > Output rollout > Add button > Select bake element > Add Elements button

 

 

 

 

Bake Elements


The following bake elements are available through the Add Texture Elements dialog. For information on the type of image or data included in each bake element, see the page for the corresponding Render Element.

 

Bake ElementCorresponding Render Element
VRayBumpNormalsMapVRayBumpNormals
VRayCausticsMapVRayCaustics
VRayCompleteMapRGB_Color

VRayDiffuseFilterMap

VRayDiffuseFilter
VRayExtraTexMap 1VRayExtraTex
VRayGlobalIlluminationMapVRayGlobalIllumination
VRayLightingMapVRayLighting
VRayMatteShadowMapVRayMatteShadow
VRayMtlReflectGlossinessBakeVRayMtlReflectGlossiness
VRayMtlReflectHillightGlossinessBakeVRayMtlReflectHighlightGlossiness
VRayMtlReflectIORBakeVRayMtlReflectIOR
VRayMtlRefractGlossinessBakeVRayMtlRefractGlossiness
VRayNormalsMapVRayNormals
VRayRawDiffuseFilterMapVRayRawDiffuseFilter
VRayRawGlobalIlluminationMapVRayRawGlobalIllumination
VRayRawLightingMapVRayRawLighting
VRayRawReflectionFilterMapVRayRawReflectionFilter
VRayRawRefractionFilterMapVRayRawRefractionFilter
VRayRawRefractionMapVRayRawRefraction
VRayRawShadowMapVRayRawShadow
VRayRawTotalLightingMapVRayRawTotalLighting
VRayReflectionMapVRayReflection
VRayReflectionFilterMapVRayReflectionFilter
VRayRefractionFilterMapVRayRefractionFilter
VRayRefractionMapVRayRefraction
VRaySelfIlluminationMapVRaySelfIllumination
VRayShadowMapBakeVRayShadows
VRaySpecularMapVRaySpecular
VRaySSSMapVRaySSS2
VRayTotalLightingMapVRayTotalLighting

 

Notes


1 – The map for this element can only be set through MAX Script. To do that, add the bake element like any other. Open MAXScript listener and type the following code commands:

bp=$.iNodeBakeProperties (You need to have the object selected to perform this command)

bel=bp.GetBakeElement(1) (The number in brackets corresponds to the bake element creation order)

The map is set in the bel.texture property.

2. To specify a camera to determine reflections/refractions for texture baking, open the MAXScript listener and type the following:

renderers.current.camera_bakeCamera=$VRayCam001 where the VRayCam001 is the name of the specified camera.

 This option allows you to bake reflections and refractions as if they are visible from a certain camera.