I am implement a series of dragabble object(Sprite + Labels) that are in a draggable panel (with a soft clip). When I drag the object out, i parent it a panel with no clipping. However when I do so, the object is still being clipped.
The following is the hierachy:
DeploymentView(UIPanel)(z is 0)
> Deployable(UIPanel with clipping, UIDraggablePanel) (z is -1)
>>Mechs(UIGrid) (z is -1)
>>>Mech 1(UIDraggable Object) z = 0
>>>Mech 2(UIDraggabel Object) z = 0
DeployedView(UIPanel) <- objects parent to this when 'dragged out' (z is -3)
I notice even after I parent the object to the panel, the 'materials' don't appear under the Deployed panel (unlike the drag/drop example 11).
Is there a step i'm missing?