Material#
(Material)
- Abstract Class
- Category:
/Material
- Default object name:
material
- Inherits from: ProjectItem
- Inherited by: MaterialDefault, MaterialGlView, MaterialGradient, MaterialMatte, MaterialNormal, MaterialPhysical, MaterialRandom, MaterialSwitch
No corresponding User page.
Description#
An abstract material used to compute the shading of objects in a scene.
Public Attributes#
Type | Name | Visual Hint | Description |
---|---|---|---|
bool |
export_aovs |
VISUAL_HINT_DEFAULT |
Compute and write Aovs defined in the shading graph |
reference (AovStore ) |
arbitrary_output_variables |
VISUAL_HINT_DEFAULT |
Set the list of extra channels to write to the image. |
CID#
class "Material" "ProjectItem" {
abstract yes
#version 0.9
icon "../icons/object_icons/material.iconrc"
category "/Material"
doc "An abstract material used to compute the shading of objects in a scene."
attribute_group "AOV" {
collapsed yes
bool "export_aovs" {
doc "Compute and write Aovs defined in the shading graph"
value yes
}
list<reference> "arbitrary_output_variables" {
doc "Set the list of extra channels to write to the image."
filter "AovStore"
dirtiness_pass_through yes
value <empty>
}
}
}