Navigation
API > API/Plugins > API/Plugins/ClonerEffector
Enumerates all easing functions that are available to apply on weights See https://easings.net/ for curves visualizations and web open domain implementations Used as one enum to send the index to niagara as uint8 and apply easing directly in niagara
| Name | ECEClonerEasing |
| Type | enum |
| Header File | /Engine/Plugins/VirtualProduction/ClonerEffector/Source/ClonerEffector/Public/CEClonerEffectorShared.h |
| Include Path | #include "CEClonerEffectorShared.h" |
Syntax
enum ECEClonerEasing
{
Linear,
InSine,
OutSine,
InOutSine,
InQuad,
OutQuad,
InOutQuad,
InCubic,
OutCubic,
InOutCubic,
InQuart,
OutQuart,
InOutQuart,
InQuint,
OutQuint,
InOutQuint,
InExpo,
OutExpo,
InOutExpo,
InCirc,
OutCirc,
InOutCirc,
InBack,
OutBack,
InOutBack,
InElastic,
OutElastic,
InOutElastic,
InBounce,
OutBounce,
InOutBounce,
Random,
}
Values
| Name | Remarks |
|---|---|
| Linear | |
| InSine | |
| OutSine | |
| InOutSine | |
| InQuad | |
| OutQuad | |
| InOutQuad | |
| InCubic | |
| OutCubic | |
| InOutCubic | |
| InQuart | |
| OutQuart | |
| InOutQuart | |
| InQuint | |
| OutQuint | |
| InOutQuint | |
| InExpo | |
| OutExpo | |
| InOutExpo | |
| InCirc | |
| OutCirc | |
| InOutCirc | |
| InBack | |
| OutBack | |
| InOutBack | |
| InElastic | |
| OutElastic | |
| InOutElastic | |
| InBounce | |
| OutBounce | |
| InOutBounce | |
| Random |