ARKitBlendMode enum

Blend modes that ARKitMaterial uses to compose with the framebuffer to produce blended colors.

Inheritance

Constructors

ARKitBlendMode()
const

Values

alpha → const ARKitBlendMode

Blends the source and destination colors by adding the source multiplied by source alpha and the destination multiplied by one minus source alpha.

add → const ARKitBlendMode

Blends the source and destination colors by adding them up.

subtract → const ARKitBlendMode

Blends the source and destination colors by subtracting the source from the destination.

multiply → const ARKitBlendMode

Blends the source and destination colors by multiplying them.

screen → const ARKitBlendMode

Blends the source and destination colors by multiplying one minus the source with the destination and adding the source.

replace → const ARKitBlendMode

Replaces the destination with the source (ignores alpha).

max → const ARKitBlendMode

Max the destination with the source (ignores alpha).

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<ARKitBlendMode>
A constant List of the values in this enum, in order of their declaration.