Hi,
I have a fairly simple UI, with most widgets residing under a single main panel, and I have one UIDraggablePanel for a scrollable list. I have a context-sensitive custom pointer implemented as an UISprite under the main panel.
My problem is that the pointer is drawn behind the draggable panel. However, the draggable panel needs to be in front of the main panel, because the main panel has content that needs to be displayed behind the draggable panel (mainly, a background that doesn't scroll, like in the UIDraggablePanel example).
The obvious solution seems to be to create a third panel just for the pointer. From what I understand, though, panels should be kept to a minimum. Is there a way I could achieve the same effect with fewer panels?
Thanks.