I'm hoping someone can maybe point me in the right direction...
I would like to draw a primitive (ccDrawLine) from point a to point b on a map. I have the tile map layer that I want to draw on, and I have the cords I need using positionAt(), so I know where I need to place the points for the line.
the problem I am having is I am not sure how I can tell the system I want the lines drawn on a specific layer, or if I should be sub-classing the CCTMXLayer and overriding the draw function to draw on the map...
Is there a way I can tell the system I want to draw on a specific layer without descending?