Blend

class Blend(val delegate: Blend) extends Effect with SFXDelegate[Blend]
Companion
object
class Effect
trait SFXDelegate[Blend]
class Object
trait Matchable
class Any

Value members

Constructors

def this(mode: BlendMode)

Creates a new instance of Blend with the specified mode.

Creates a new instance of Blend with the specified mode.

def this(mode: BlendMode, bottomInput: Effect, topInput: Effect)

Creates a new instance of Blend with the specified mode and bottom and top inputs.

Creates a new instance of Blend with the specified mode and bottom and top inputs.

Concrete methods

The bottom input for this Blend operation.

The bottom input for this Blend operation.

def bottomInput_=(v: Effect): Unit
def mode: ObjectProperty[BlendMode]

The BlendMode used to blend the two inputs together.

The BlendMode used to blend the two inputs together.

def mode_=(v: BlendMode): Unit

The opacity value, which is modulated with the top input prior to blending.

The opacity value, which is modulated with the top input prior to blending.

def opacity_=(v: Double): Unit
def topInput: ObjectProperty[Effect]

The top input for this Blend operation.

The top input for this Blend operation.

def topInput_=(v: Effect): Unit

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: Blend