public static float Snap (float val, float snap);

Parámetros

valThe value to round.
snapThe increment to round to.

Valor de retorno

float The rounded value.

Descripción

Rounds value to the closest multiple of snap.


public static Vector2 Snap (Vector2 val, Vector2 snap);

Parámetros

valThe value to round.
snapThe increment to round to.

Valor de retorno

Vector2 The rounded value.

Descripción

Rounds value to the closest multiple of snap.


public static Vector3 Snap (Vector3 val, Vector3 snap, SnapAxis axis);

Parámetros

valThe value to round.
snapThe increment to round to.
axisRestrict snapping to the components on these axes.

Valor de retorno

Vector3 The rounded value.

Descripción

Rounds value to the closest multiple of snap.