Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Vector2

struct in UnityEngine

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство

Описание

Representation of 2D vectors and points.

This structure is used in some places to represent 2D positions and vectors (e.g. texture coordinates in a Mesh or texture offsets in Material). In the majority of other cases a Vector3 используется.

Статические переменные

downShorthand for writing Vector2(0, -1).
leftShorthand for writing Vector2(-1, 0).
oneShorthand for writing Vector2(1, 1).
rightShorthand for writing Vector2(1, 0).
upShorthand for writing Vector2(0, 1).
zeroShorthand for writing Vector2(0, 0).

Переменные

magnitudeReturns the length of this vector (Read Only).
normalizedReturns this vector with a magnitude of 1 (Read Only).
sqrMagnitudeReturns the squared length of this vector (Read Only).
this[int]Access the x or y component using [0] or [1] respectively.
xX компонент вектора.
yY компонент вектора.

Конструкторы

Vector2Constructs a new vector with given x, y components.

Открытые функции

NormalizeMakes this vector have a magnitude of 1.
SetSet x and y components of an existing Vector2.
ToStringReturns a nicely formatted string for this vector.

Статические функции

AngleReturns the angle in degrees between from and to.
ClampMagnitudeReturns a copy of vector with its magnitude clamped to maxLength.
DistanceReturns the distance between a and b.
DotDot Product of two vectors.
LerpLinearly interpolates between vectors a and b by t.
LerpUnclampedLinearly interpolates between vectors a and b by t.
MaxReturns a vector that is made from the largest components of two vectors.
MinReturns a vector that is made from the smallest components of two vectors.
MoveTowardsMoves a point current towards target.
ReflectReflects a vector off the vector defined by a normal.
ScaleMultiplies two vectors component-wise.
SmoothDampGradually changes a vector towards a desired goal over time.

Операторы

operator -Subtracts one vector from another.
operator !=Returns true if vectors different.
operator *Multiplies a vector by a number.
operator /Divides a vector by a number.
operator +Добавляет два вектора.
operator ==Returns true if the vectors are equal.
Vector2Converts a Vector3 to a Vector2.
Vector3Конвертирует Vector2 в Vector3.