Table of Contents

Class RDPipelineColorBlendState

Pipeline color blend state (used by RenderingDevice).

Inheritance
RDPipelineColorBlendState

Remarks

This object is used by RenderingDevice.

Properties

attachments

The attachments that are blended together.

var attachments : RDPipelineColorBlendStateAttachment[] = []

Property Value

RDPipelineColorBlendStateAttachment[]

Remarks

blend_constant

The constant color to blend with. See also RenderingDevice.draw_list_set_blend_constants.

var blend_constant : Color = Color(0, 0, 0, 1)

Property Value

Color

Remarks

  • void set_blend_constant(Color value)
  • Color get_blend_constant

enable_logic_op

If true, performs the logic operation defined in logic_op.

var enable_logic_op : bool = false

Property Value

bool

Remarks

  • void set_enable_logic_op(bool value)
  • bool get_enable_logic_op

logic_op

The logic operation to perform for blending. Only effective if enable_logic_op is true.

var logic_op : int = 0

Property Value

int

Remarks

  • void set_logic_op(int value)
  • int get_logic_op