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.

Image.fillOrigin

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 var fillOrigin: int;
public int fillOrigin;

Descripción

Controls the origin point of the Fill process. Value means different things with each fill method.

You should cast to the appropriate origin type: Image.OriginHorizontal, Image.OriginVertical, Image.Origin90, Image.Origin180 or [[Image.Origin360] depending on the Image.Fillmethod.

using UnityEngine;
using UnityEngine.UI;
using System.Collections;

[RequireComponent(typeof(Image))] public class ImageOriginCycle : MonoBehaviour { void OnEnable () { Image image = GetComponent<Image>(); string fillOriginName = "";

switch ((Image.FillMethod) image.fillMethod) { case Image.FillMethod.Horizontal: fillOriginName = ((Image.OriginHorizontal) image.fillOrigin).ToString(); break; case Image.FillMethod.Vertical: fillOriginName = ((Image.OriginVertical) image.fillOrigin).ToString(); break; case Image.FillMethod.Radial90: fillOriginName = ((Image.Origin90) image.fillOrigin).ToString(); break; case Image.FillMethod.Radial180: fillOriginName = ((Image.Origin180) image.fillOrigin).ToString(); break; case Image.FillMethod.Radial360: fillOriginName = ((Image.Origin360) image.fillOrigin).ToString(); break; } Debug.Log (string.Format("{0} is using {1} fill method with the origin on {2}", name, image.fillMethod, fillOriginName)); } }

Note: This willl only have any effect if the Image.type is set to Image.Type.Filled.