Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Scale

Multiplies two vectors component-wise.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule

Scale(Vector2Int, Vector2Int)

Multiplies two vectors component-wise.
public static Vector2Int Scale(Vector2Int a, Vector2Int b)

Parameters

The vector to multiply by
b
.

The vector to multiply
a
by.

Returns

Type

Description

Vector2IntA component of
a
multiplied by the same component of
b
.

Remarks

Every component in the result is a component of
a
multiplied by the same component of
b
.

Scale(Vector2Int, Vector2Int)

Multiplies two vectors component-wise.
public static Vector2Int Scale(in Vector2Int a, in Vector2Int b)

Parameters

The vector to multiply by
b
.

The vector to multiply
a
by.

Returns

Type

Description

Vector2IntA component of
a
multiplied by the same component of
b
.

Remarks

Every component in the result is a component of
a
multiplied by the same component of
b
.

Scale(Vector2Int)

Multiplies every component of this vector by the same component of
scale
.
public void Scale(Vector2Int scale)

Parameters

The vector to multiply by.

Scale(Vector2Int)

Multiplies every component of this vector by the same component of
scale
.
public void Scale(in Vector2Int scale)

Parameters

The vector to multiply by.