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.