valuemodifier - eisclimber/ExPresS-XR GitHub Wiki
Classes for modifying values and types of value range interactables.
| Name | Description |
|---|---|
| BaseValueRangeModifier<U, V> | Implements the basic behavior of modifying a ValueRange and emitting a new event with this value. |
All you need to do is to implement the GetModifiedValue() function and it connect the |
|
| 'ValueChanged(Single, Single)'-event of your interactable. | |
| BlendShapeModifier | Allows scaling a normalized float value between the min (0.0f) and max value (1.0f) to be used by a BlendShape. |
| Float01ThresholdModifier | Allows checking if a normalized float is above/below a threshold |
| FloatCustomRangeModifier | Allows scaling a normalized float value range between a customizable min and max value. |
| FormatFloatModifier | Allows converting a normalized float to a string whilst passing it to a format string. |
| PingPongBlendShapeModifier | Allows scaling a normalized float value range between a min and max value. |