How to remove Collision?
obliviux
Member Posts: 6
Hi guys,
I have an actor A that bounce with other Actor A. When I drag and drop this actor around the screen, I need to remove the collision...How is this possible?
I have an actor A that bounce with other Actor A. When I drag and drop this actor around the screen, I need to remove the collision...How is this possible?
Comments
Rule
When self.dragging = False
-----Collide with Actors of Type Actor A
When the Collide Behavior become active, it can not be disabled.. For example:
I set "When DragAndDrop=TRUE then COLLIDE with Actor A"
The game start, DragAndDrop=False, Actor A don't collide.
When I DragAndDrop the Actor A, the boolean become true, Actor A collide.
I release the Actor A, boolean become false, but Actor A collide again...