[펌] UGUI Image 버튼 영역(Collider) 크기 지정
Unity3D/UGUI / 2018. 12. 12. 21:08
using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.
public class AlphaButton : MonoBehaviour
{
public float AlphaThreshold = 0.1f;
void Start()
{
this.GetComponent<Image>().alphaHitTestMinimumThreshold = AlphaThreshold;
}
}
[출처] https://answers.unity.com/questions/821613/unity-46-is-it-possible-for-ui-buttons-to-be-non-r.html
[참조] http://www.devkorea.co.kr/bbs/board.php?bo_table=m03_qna&wr_id=68902
반응형
'Unity3D > UGUI' 카테고리의 다른 글
[GitHub] Unity UI Extensions (0) | 2024.10.22 |
---|---|
[펌] UnityCoverFlow (0) | 2019.05.14 |
[링크] 화면 해상도와 스케일링 (0) | 2018.12.03 |
[링크] uGui 사용시 인풋에 의한 오브젝트 이벤트(Raycast,EventSystem) 일률화 (0) | 2018.11.22 |
[펌] EventSystem설정 터치 감도 조절 (0) | 2016.09.22 |