ShaderNodeTexEnvironment(ShaderNode)
base classes — bpy_struct, Node, NodeInternal, ShaderNode
- class bpy.types.ShaderNodeTexEnvironment(ShaderNode)
Sample an image file as an environment texture. Typically used to light the scene with the background node
- color_mapping
Color mapping settings (readonly, never None)
- Type:
- image_user
Parameters defining which layer, pass and frame of the image is displayed (readonly, never None)
- Type:
- interpolation
Texture interpolation (default
'Linear')LinearLinear – Linear interpolation.ClosestClosest – No interpolation (sample closest texel).CubicCubic – Cubic interpolation.SmartSmart – Bicubic when magnifying, else bilinear (OSL only).
- Type:
Literal[‘Linear’, ‘Closest’, ‘Cubic’, ‘Smart’]
- projection
Projection of the input image (default
'EQUIRECTANGULAR')EQUIRECTANGULAREquirectangular – Equirectangular or latitude-longitude projection.MIRROR_BALLMirror Ball – Projection from an orthographic photo of a mirror ball.
- Type:
Literal[‘EQUIRECTANGULAR’, ‘MIRROR_BALL’]
- texture_mapping
Texture coordinate mapping settings (readonly, never None)
- Type:
- classmethod is_registered_node_type()
True if a registered node type
- Returns:
Result
- Return type:
bool
- classmethod input_template(index)
Input socket template
- Parameters:
index (int) – Index, (in [0, inf])
- Returns:
result
- Return type:
- classmethod output_template(index)
Output socket template
- Parameters:
index (int) – Index, (in [0, inf])
- Returns:
result
- Return type:
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type
Inherited Properties
Inherited Functions
|