using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
/// <summary>
/// Alpha값(0.1f) 이상만 버튼 클릭되도록 하는 부착 스크립트
/// </summary>
public class ATTACHAlphaButton : MonoBehaviour
{
public float iAlphaThreshhold = 0.1f;
private void Start()
{
this.GetComponent<Image>()
.alphaHitTestMinimumThreshold = this.iAlphaThreshhold;
}
}
'Unity' 카테고리의 다른 글
[Save] 완전히 분해된 Sprite 파츠로 애니메이션 사용하는 법 (0) | 2021.10.19 |
---|---|
[Save] Unity + Spine2D : 기본 제공 Outline Shader 사용으로 스파인 애니메이션에 외곽선 입히기 (0) | 2021.10.18 |
[typeof] T(제네릭)를 게임 이름으로 쓰고 싶을 때 (0) | 2021.06.30 |
Input.multiTouchEnabled (0) | 2021.05.04 |
Application.targetFrameRate (0) | 2021.05.04 |