[This is preliminary documentation and is subject to change.]
Restricts a value to be within a specified range.
Namespace: Rage
Assembly: RagePluginHook (in RagePluginHook.dll) Version: 0.0.0.0 (0.56.1131.11510)
Syntax
public static void Clamp( ref Vector2 value, ref Vector2 min, ref Vector2 max, out Vector2 result )
Parameters
- value
- Type: RageVector2
The value to clamp. - min
- Type: RageVector2
The minimum value. - max
- Type: RageVector2
The maximum value. - result
- Type: RageVector2
When the method completes, contains the clamped value.
See Also