본문 바로가기
유니티/팁, 정보 노트

[Unity]인자가 있는 별도의 함수 Listener에 등록

by 개발펭귄 2019. 4. 15.

btn.onClick.AddListener(delegate {
       OnButtonClick(btn);
});

delegate를 이용해 쓰면 된다.