버튼 클릭시 이미지의 알파영역을 무시하기

2019. 5. 20. 17:05개발/유니티

이미지의 Mesh Type을 Full Rect로 변경

Read/Write Enabled를 체크

 

스크립트 예제)

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
 
 
 public class AlphaButton : MonoBehaviour 
 { 
    public float AlphaThreshold = 0.1f; 
 
    void Start() 
    { 
        this.GetComponent<Image>().alphaHitTestMinimumThreshold = AlphaThreshold; 
    } 
 }
cs