question

Marco Baccalaro avatar image
0 Likes"
Marco Baccalaro asked Marco Baccalaro commented

Transporter's items not stacked

How can I avoid the Transporter to stack flowitems?

  • Changing the items location On Entry doesn't work on z because a kinematic is overwriting their z position
  • Trying to overwrite the z On Draw doesn't work too
FlexSim 18.0.2
transporterstacked itemstransporter itemstransporter stacked
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Joerg Vogel avatar image
2 Likes"
Joerg Vogel answered Marco Baccalaro commented

You can transfer the items into the drawsurrogate node.

In the OnLoad trigger put this code:

moveobject(item,current.attrs.drawsurrogate.find("Truck/Forks"));
item.location = Vec3(0,0,0);

You have to adjust the location of each loaded item to your wishes.


· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Marco Baccalaro avatar image Marco Baccalaro commented ·

Thanks Jörg, it worked!

1 Like 1 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.