Arnold has been updated, and with it, MaxtoA, the connection between 3ds Max and Arnold, to 5.4.0.36.

Biggest improvements on this release is a much better Vray scene converter. You will be able to translate most vray scenes in to arnold with one single click. An improved standard volume shader with Dual-lobe phase function that adds new scatter metodes, and other volume shader improvements related to emission. Check the complete article here

  • Improved V-Ray scene converter : The V-Ray scene converter now has been improved and supports many new features. More documentation can be found here.                                                                               
  • Dual-lobe phase function for standard_volume: A new phase function model has been implemented for the standard_volume shader, which is a mixture of two lobes rather than a single lobe as before. This provides a more realistic approximation to the physical phase function of scattering media such as clouds. The new model adds two new parameters, scatter_secondary_anisotropy (in [-1,1]) and scatter_secondary_anisotropy_mix (in [0,1]).  (ARNOLD-9335).
    The cloud on the left (below), using the default anisotropy (0) settings, does not show much forward scattering. The center image (anisotropy 1: 0.7, anisotropy 2: 0.7) shows a strong “silver lining” at the rim of strongly forward scattered light from the sun behind. The cloud on the right (anisotropy 1: -0.4, anisotropy 2: 0.7) adds a secondary phase function lobe which fills in the bulk of the cloud with back-scattered light while maintaining the silver lining.

  • The image below shows the full parameter space of the new dual-phase function model (each cell shows the phase function shape for a given combination of lobe anisotropies, which varies as the lobe mix weight is animated). The blue curves correspond to the old single lobe model.
  • Physically correct volume emission scaling: The standard_volume shader has been improved to support scaling of volumetric emission in a more physically correct manner (via the emission_scaling option). The “opacity” emission scaling mode is based on density and transparency and scaled appropriately to the opacity of the resulting volume. This is physically accurate for blackbody if the scattering color is black. The “thermodynamic” emission scaling mode is the most physically correct as it also takes into account scattering color, since according to thermodynamics volumes with higher scattering albedo emit less blackbody radiation. For example, burning hydrogen produces steam but barely emits blackbody radiation while sooty smoke readily does. This mode is most useful when mixing different types of volumes with varying scattering properties. (ARNOLD-11701).
    The images below show the effect of the scaling mode on blackbody emission. The difference between opacity and thermodynamic modes here is that in thermodynamic mode the white, highly scattering smoke does not emit, while the black smoke does (which is a slightly subtle effect but more physically correct).
  • Other volume emission improvements: The blackbody_intensity control can now be dialed above 1 for convenience. A blackbody_contrast parameter has also been added to (non-physically) reduce the brightness difference between parts of the volume at different temperatures, which can be useful for artistic purposes. (ARNOLD-11701). The images below show the effect of altering the new blackbody_contrast parameter. This reduces the disparity in brightness between parts of the volume at different temperatures, which tends to bring out the blackbody colors more vividly (though note that only value 1 is physically correct).
  • Pinned curves: A new wrap_mode parameter on curves can enable curve pinning. Pinned non-periodic curves go through the first and last point without having to introduce phantom points, thus reducing the amount of data stored on disk. (ARNOLD-12209)
  • The left curve’s wrap_mode is set to nonperiodic, the right curve’s is set to pinned.
    • Nested instancers: Nested instancers (instancer that contains instances of instancers) now properly perform instancing, fixing a severe overhead in node init/update time that made heavy use of nested instancers intractable.  (ARNOLD-12410)
    • Cameras in ASS procedurals: Cameras stored in .ass file procedurals can now be used for rendering. (ARNOLD-12333)
    • Cryptomatte 1.2.0: The version of Cryptomatte bundled with Arnold is upgraded to 1.2.0 (ARNOLD-12340).
    • Upgrade OpenImageIO 2.4.1: The OIIO used by Arnold has been upgraded to slightly newer than 2.4.1 (OIIO hash 7a662829b). (ARNOLD-12471)
    • Reduced missing texture overhead: The time spent handling missing textures has been reduced. Most likely this will be noticeable on file servers servicing a render farm. (ARNOLD-11915)
    • Light profile blocks: The AiLightsPrepare() profile result has been elaborated on, with LightSampling, light_filters, and LightInitSampler profile blocks being added. This will result in the self times reported for AiLightsPrepare() going down and these other profile blocks showing up with the corresponding times. This can help point out where render time is going during lighting. (ARNOLD-12439)
    • Python binding error message: When Arnold cannot be loaded by the python bindings, we now output the original exception error message instead of just the cryptic “Could not find libai”. (ARNOLD-12366)

USD Enhancements

  • Support dataWindowNDC: when the render settings primitive defines the attribute dataWindowNDC, it now renders accordingly in both Hydra and the USD reader, by framing the render to the expected normalized window.  usd#1161
  • Cryptomatte in Hydra: When rendering final frames with Hydra, the cryptomatte metadatas are set in the output image usd#1164
  • Render products with no productName: When AOVs are defined through a render product prim that doesn’t have any product name, they now render to the same filename as the beauty image.  usd#1170
  • Instances optimizations in the procedural: When using instances, the usd procedural now relies on a usdStageCache to represent the instance prototypes, instead of re-loading the usd files on disk for each prototype. 
  • Pinned curves: Curves pinning is now supported in hydra and in the procedural

API Additions

  • Unique identifiers for AtUniverse: Each universe has a unique ID that can be obtained through the new AiUniverseGetId() API. This ID can later be used to retrieve a pointer to that universe using the new AiUniverseGetFromId() API. (ARNOLD-12302)
  • Print system info: The new AiMsgSystemInfo() outputs information related to the Arnold version, the system, and the devices. Even though this information was already printed at the start of an Arnold log, in certain cases it is useful to reprint it. (ARNOLD-12428)
  • AI_LOG_STATUS mask: We introduced a new log mask called AI_LOG_STATUS for messages that Arnold generates to indicate what is currently occurring. For instance, it will report when GPU shader compilation is occurring, when rendering has started, when node init and update are starting, and so on. These messages can help plugins to explain to users what is going on and what, for example, Arnold is doing before rendering starts and the screen is still black. (ARNOLD-12219, ARNOLD-12502)

Incompatible Changes

  • Improved AOV wildcards: When using AOV wildcard syntax and specifying a name for an output layer, the AOV type will be replaced by the given name. For example, using a wildcard of ‘diffuse_*’, a layer name of ‘myLayer’, and AOVs of ‘red’ & ‘blue’, the layers written into the EXR will be named ‘myLayer_red’ and ‘myLayer_blue’ instead of the default ‘diffuse_red’ and ‘diffuse_blue’. (ARNOLD-12282).

Bug Fixes

  • ARNOLD-12282 – Crash writing light groups with preserve_layer_name
  • ARNOLD-12337 – Compression setting for dwaa/dwab is too low
  • ARNOLD-12346 – Clip_geo crashes when rendered in multiple render sessions
  • ARNOLD-12441 – Json stats should place the shader “percent by depth” category under “shader calls”
  • ARNOLD-12470 – Empty/invalid mesh on mesh_light causes crash
  • usd#1168 Remove attributes reset in the lights delegate
  • usd#1165 Support double array primvars in the procedural
  • usd#1175 Fix authoring per-channel connections so that the output attribute exists
  • usd#1131 Revert to SdrShaderNodes for discovery plugin
  • usd#1179 Support filter-type attributes in the reader
  • usd#1205 Support several render products for the same render var
  • usd#1183 Fix usdPreviewSurface attribute useSpecularWorkflow in the procedural
  • usd#1191 Ignore distant lights normalize attribute in the delegate to match the procedural

Leave a Comment

Your email address will not be published. Required fields are marked *