I'm having some clipping issues with a draggable panel. The draggable panel only contains a grid. If the grid is filled with Sprites, clipping works as expected. If I put the sprites into sub-panels, clipping stops working. I'm using the sub-panels because I want to have some associated text with the spite all within a grid cell. Is the sub-panel the correct way to group these elements?
clips correctly:
...
Anchor
Panel
Grid
Sprite00
Sprite01
Sprite02
Sprite03
Doesn't clip:
...
Anchor
Panel
Grid
Panel00
Sprite00
Panel01
Sprite01
Panel02
Sprite02
Panel03
Sprite03
The real structure I'm after:
...
Anchor
Panel
Grid
Panel00
LabelA
LabelB
LabelC
Sprite00
Panel01
...
Panel02
Panel03