OnPointerClick









How do I use On Pointer Click
Below are practical examples compiled from projects for learning and reference purposes

Featured Snippets


File name: Cell.cs Copy
65         public void OnPointerClick(PointerEventData eventData)
66         {
67             if (onCellClick != null)
68             {
69                 onCellClick(this);
70             }
71         }

OnPointerClick 151 lượt xem

Gõ tìm kiếm nhanh...