Skip to content

Instantly share code, notes, and snippets.

View Youngchangoon's full-sized avatar

Youngchan Youngchangoon

  • Seoul, Republic of Korea
View GitHub Profile
@Youngchangoon
Youngchangoon / InvisibleGraphic.cs
Created October 1, 2017 05:01
[UNITY] 보이지 않는 영역 그래픽 터치 처리하고싶을때.. / InvisibleGraphic
using UnityEngine;
using UnityEngine.UI;
public class InvisibleGraphic : Graphic
{
protected override void OnPopulateMesh(VertexHelper vh)
{
vh.Clear();
}
}