Skip to content

Z.Blend

Studio is being deprecated, please head over to the documentation page for Mattercraft, our most advanced 3D tool for the web, where you can find the most recent information and tutorials.

enum Blend { "inherit", "default", "additive" }

The blend mode for materials and objects. During rendering, objects are drawn onto the screen on top of those that have already been drawn. Z.Blend indicates how the final pixel values for an object depend on the object itself and the pixels beneath it.

Member Description
inherit Use the parent node’s blend type.
default Final pixels are an average of those beneath and the object pixels, weighted by the object pixel transparency.
additive Object pixels are added to those beneath it.