Contents

atPoint(_:)

Returns the deepest visible descendant that intersects a point.

Declaration

func atPoint(_ p: CGPoint) -> SKNode

Parameters

  • p:

    A point in the node’s coordinate system.

Mentioned in

Return Value

A descendant in the subtree that intersects the point, or the receiver if no nodes intersect the point. Only nodes that have an isHidden of false and an alpha greater that zero are returned. If multiple descendants intersect the point, the deepest node in the tree is returned. If multiple nodes are at the same level, the intersecting node with the largest z position is returned.

Discussion

A point is considered to be in a node if it lies inside the rectangle returned by the calculateAccumulatedFrame() method.

See Also

Hit Testing