View Single Post
  #2  
Old 12-13-2016, 05:14 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Quote:
What is the best way to trigger the fall action after the box has been picked up and keep the action occurring over a certain height?
You could set up a callback function for the grabber's release event. In the callback function, apply the falling action to the object.

Quote:
Also how do I make it stop falling whenever it collides with another object?
This seems like it could get complicated. You could try using collision detection to detect if the collision has occured. Then use the node.endAction command to end the falling action and have the object stop immediately.
Reply With Quote