QColorMask

PyQt5.Qt3DRender.QColorMask

Inherits from QRenderState.

Description

Allows specifying which color components should be written to the currently bound frame buffer.

By default, the property for each color component (red, green, blue, alpha) is set to true which means they will be written to the frame buffer. Setting any of the color component to false will prevent it from being written into the frame buffer.

Methods

__init__(parent: QNode = None)

Constructs a new Qt3DCore::QColorMask instance with parent as parent.


isAlphaMasked() → bool

TODO


isBlueMasked() → bool

TODO


isGreenMasked() → bool

TODO


isRedMasked() → bool

TODO


setAlphaMasked(bool)

See also

isAlphaMasked().


setBlueMasked(bool)

See also

isBlueMasked().


setGreenMasked(bool)

See also

isGreenMasked().


setRedMasked(bool)

See also

isRedMasked().

Signals

alphaMaskedChanged(bool)

TODO


blueMaskedChanged(bool)

TODO


greenMaskedChanged(bool)

TODO


redMaskedChanged(bool)

TODO