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.eventAlphaThreshold

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 eventAlphaThreshold: float;
public float eventAlphaThreshold;

Descripción

The alpha threshold specifying the minimum alpha a pixel must have for the event to be passed through.

The alpha is decided from the image sprite only, while the alpha of the Image Graphic.color is disregarded.

alphaEventThreshold is defaulted to 1. Events inside the rectangle are always passed through regardless of alpha. In order for lower values to work, the sprite used by the Image must have readable pixels. This can be achived by enabling Read/Write enabled in the advanced Texture Import Settings for the sprite and disabling atlassing for the sprite.


        
using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class ExampleClass : MonoBehaviour {

public Image theButton;

// Use this for initialization void Start () { theButton.eventAlphaThreshold = 0.5f; } }