View Single Post
  #2  
Old 01-14-2014, 04:18 AM
zorgblaubaer zorgblaubaer is offline
Member
 
Join Date: Oct 2013
Posts: 3
I managed to solve both problems.

I got rid of the bouncyness by reseting the objects when the grab is removed:

Code:
else:
    if grab != False:
	grab.getDst().reset()
	grab.remove()
	grab = False
I got the objects being recognized by not removing the DropBin bounding boxes but rather make them invisible (and I also remove the objects from the scene as soon as they are inside of a bin)
Reply With Quote