SKNode inherits from NSResponder but I'm having trouble understanding how nodes are included in the responder chain and where they are inserted.
For example, how does a SKNode receive the mouseDown:
message?
When a view is clicked, a hit testing process occurs to determine the deepest view at the hit location and then mouseDown:
is sent up the responder chain from that point.
SKNodes are not views so they cannot get send this message directly (because it it handled by the SKView). So how are they included in the responder chain?