emissive_color property

emissive_color property

Gets or sets the emissive color

Example

from aspose.threed.shading import LambertMaterial
from aspose.threed.utilities import Vector3

mat = LambertMaterial()
mat.emissive_color = Vector3(1, 1, 1)

Definition:

@property
def emissive_color(self):
    ...
@emissive_color.setter
def emissive_color(self, value):
    ...

See Also