인프런 커뮤니티 질문&답변
전체 소스코드 요청드립니다.
작성
·
338
퀴즈
How do you distinguish game elements (like characters, backgrounds, etc.) when the screen is touched?
Calculates touch coordinates to find the closest element name.
Using the `atPoint` function, we get the node at the touch location and distinguish it by the node name.
Scan all game elements, verify touch area inclusion.
Categorized by touch event type (single tap, double tap, etc.).





네 감사합니다!