Kanzi  3.9.8
Kanzi Engine Java API
EffectStack2DEnums.StackingMode Enum Reference

Defines the stacking modes you can apply to child effects. More...

Inheritance diagram for EffectStack2DEnums.StackingMode:
[legend]

Public Member Functions

 StackingMode (int mValue)
 
 StackingMode (StackingMode enum_)
 
int getValue ()
 Returns the integer value of the enumeration constant. More...
 
final int swigValue ()
 

Static Public Member Functions

static StackingMode swigToEnum (int swigValue)
 
static StackingMode toEnum (int value)
 Converts an integer value to the matching enumeration constant. More...
 

Public Attributes

 Chained =(0)
 Child effect uses as its input the result of a previous effect, the combined result of a sequence of layered effects, or the node content. More...
 
 Layered =(1)
 Child effect uses as its input either the result of a previous chained effect or the node content. More...
 

Detailed Description

Defines the stacking modes you can apply to child effects.

Member Function Documentation

int getValue ( )

Returns the integer value of the enumeration constant.

Returns
Integer value.

Implements Enum.

static StackingMode toEnum ( int  value)
static

Converts an integer value to the matching enumeration constant.

Parameters
valueInteger value to convert to enumeration constant.
Returns
Enumeration constant matching the integer value.

Member Data Documentation

Chained =(0)

Child effect uses as its input the result of a previous effect, the combined result of a sequence of layered effects, or the node content.

The next effect uses as its input the result of this effect.

Layered =(1)

Child effect uses as its input either the result of a previous chained effect or the node content.

A sequence of layered effects are combined on top of each other in layers.