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

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

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

RectTransform.SetInsetAndSizeFromParentEdge

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

Успех!

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

Закрыть

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

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

Закрыть

Отменить

Руководство
public function SetInsetAndSizeFromParentEdge(edge: RectTransform.Edge, inset: float, size: float): void;
public void SetInsetAndSizeFromParentEdge(RectTransform.Edge edge, float inset, float size);

Параметры

edge The edge of the parent rectangle to inset from.
inset The inset distance.
size The size of the rectangle along the same direction of the inset.

Описание

Set the distance of this rectangle relative to a specified edge of the parent rectangle, while also setting its size.

Calling this method sets both the anchors, anchoredPosition, and sizeDelta, though only either the horizontal or vertical components, depending on which edge is specified for the inset.

The method can particularly be useful when scripting layout behaviours, since it makes it simple to specify positions relative to the parent edges without needing to be concerned with anchoring functionality.