Hi All,
I have a question about the pickOffset task I am giving to a crane. The tasksequence I am using is:
Object crane = model().find("Crane1"); Object destination = model().find("Queue1"); Object item = destination.first; treenode TaskSq = createemptytasksequence( crane, 0, 0 ); //X Y movement inserttask(TaskSq, TASKTYPE_PICKOFFSET, item, destination, 1, 1, 0, 0); dispatchtasksequence( TaskSq );
The problem that I have is that the crane does not end his movement on his travel height. He stops at his start height + the height of the item. I did not expect this because I am saying that the crane should not travel offset in the z direction. I expected that the crane would stop at height 1, not 2.3. Is this behavior correct or not?
Thank you,
Patrick
Attached is a simple model, where you can use the script to start the tasksequence.