Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

RectTransform.SetInsetAndSizeFromParentEdge

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function SetInsetAndSizeFromParentEdge(edge: RectTransform.Edge, inset: float, size: float): void;
public void SetInsetAndSizeFromParentEdge(RectTransform.Edge edge, float inset, float size);

Parámetros

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.

Descripción

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.