Hello everyone. I have created two UserAreas and I want to drag objects between them. Can you please tell me how to implement this?
def __init__(self):
self.area1 = DraggingArea1()
self.area2 = DraggingArea2()
def CreateLayout(self):
self.AddUserArea(1000, c4d.BFH_SCALEFIT | c4d.BFV_SCALEFIT)
self.AttachUserArea(self.area1, 1000)
self.AddUserArea(2000, c4d.BFH_SCALEFIT | c4d.BFV_SCALEFIT)
self.AttachUserArea(self.area2, 2000)
return True