Plugin for the tweening of strings. More...
Public Member Functions | |
PlugString (string p_endVal) | |
Creates a new instance of this plugin using the main ease type, substituting any existing string with the given one over time. | |
PlugString (string p_endVal, EaseType p_easeType) | |
Creates a new instance of this plugin, substituting any existing string with the given one over time. | |
PlugString (string p_endVal, bool p_isRelative) | |
Creates a new instance of this plugin using the main ease type. | |
PlugString (string p_endVal, EaseType p_easeType, bool p_isRelative) | |
Creates a new instance of this plugin. | |
PlugString (string p_endVal, AnimationCurve p_easeAnimCurve, bool p_isRelative) | |
Creates a new instance of this plugin. |
Plugin for the tweening of strings.
PlugString | ( | string | p_endVal | ) |
Creates a new instance of this plugin using the main ease type, substituting any existing string with the given one over time.
p_endVal | The string value to tween to. |
PlugString | ( | string | p_endVal, |
EaseType | p_easeType | ||
) |
Creates a new instance of this plugin, substituting any existing string with the given one over time.
p_endVal | The string value to tween to. |
p_easeType | The EaseType to use. |
PlugString | ( | string | p_endVal, |
bool | p_isRelative | ||
) |
Creates a new instance of this plugin using the main ease type.
p_endVal | The string value to tween to. |
p_isRelative | If true , the given value will be added to any existing string, if false the existing string will be completely overwritten. |
PlugString | ( | string | p_endVal, |
EaseType | p_easeType, | ||
bool | p_isRelative | ||
) |
Creates a new instance of this plugin.
p_endVal | The string value to tween to. |
p_easeType | The EaseType to use. |
p_isRelative | If true , the given value will be added to any existing string, if false the existing string will be completely overwritten. |
PlugString | ( | string | p_endVal, |
AnimationCurve | p_easeAnimCurve, | ||
bool | p_isRelative | ||
) |
Creates a new instance of this plugin.
p_endVal | The string value to tween to. |
p_easeAnimCurve | The AnimationCurve to use for easing. |
p_isRelative | If true , the given end value is considered relative instead than absolute. |