class documentation

Represents a basic mesh material.

This material is not affected by lights, and is rendered as a solid color.

Parameters
colorthe color of the material
wireframewhether to render the mesh as a wireframe
opacitythe opacity of the material, in the range [0, 1]
Method __init__ Undocumented
Method as_dict Undocumented
Method color.setter Undocumented
Property color Undocumented
Instance Variable _color Undocumented

Inherited from MeshMaterial:

Method wireframe.setter Undocumented
Instance Variable _wireframe Undocumented

Inherited from Material3D (via MeshMaterial):

Method opacity.setter Undocumented
Static Method _from_dict Undocumented
Instance Variable _opacity Undocumented

Inherited from BaseValidatedDataClass (via MeshMaterial, Material3D):

Method __eq__ Undocumented
Method __repr__ Undocumented
Method __setattr__ Undocumented
def __init__(self, color: str = COLOR_DEFAULT_GRAY, wireframe: bool = False, opacity: float = 1.0): (source)
@color.setter
def color(self, value: str): (source)

Undocumented

Undocumented

Undocumented