Click or drag to resize

Vector2PosMod Method (Vector2)

Returns a vector composed of the PosMod(Single, Single) of this vector's components and `modv`'s components.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public Vector2 PosMod(
	Vector2 modv
)

Parameters

modv
Type: GodotVector2
A vector representing the divisors of the operation.

Return Value

Type: Vector2
A vector with each component PosMod(Single, Single) by `modv`'s components.
See Also