Interface IRenderPassDataTransformation
Defines an interface for animated render pass data transformations.
Note: This interface and implementors are used for animations purposes. You can use it to just transform render pass data, it's not recommended though.
See Also: ScaleTransformationBase, TranslateXTransformationNamespace:
Assembly: .dll
Syntax
public interface IRenderPassDataTransformation extends renderableSeriesIRenderPassDataTransformation
Methods
onAnimationEnd()
Notifies the end of the associated animation.
Declaration
public abstract void onAnimationEnd()
onAnimationStart(float initialValue)
Notifies the start of the associated animation.
Declaration
public abstract void onAnimationStart(float initialValue)
Parameters
| Type | Name | Description |
|---|---|---|
| float | initialValue | The initial value of the associated animation. |
setCurrentProgress(float currentProgress)
Set's current value, according to which, associated render pass data will be transformed.
Note: This is used for animations purposes.
Declaration
public abstract void setCurrentProgress(float currentProgress)
Parameters
| Type | Name | Description |
|---|---|---|
| float | currentProgress | The new value. |