Version: 5.3

Image.eventAlphaThreshold

매뉴얼로 전환
public float eventAlphaThreshold ;

설명

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; } }