question

Akhil raja rao K avatar image
0 Likes"
Akhil raja rao K asked Matthew Gillespie commented

How to remove hand lifting animation while carrying object ?

I'm doing a process flow in which a person carrys a bag from a Queue and drops at another queue then walks to another destination. I've kept bag to the person as shown in the figure using change visual.

The problem here I'm facing is - As I've kept the bag position on to his shoulders, while walking I don't want his hands to be like he is lifting an object (which happens in the normal case). I want the person to walk normally with the bag in shoulders, i.e,. his hands should be down. I'm attaching my model, please find the attachment.

animation-problem.fsm

FlexSim 19.2.3
processflowanimationpeople modulecreate objectcreate objects
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

Matthew Gillespie avatar image
0 Likes"
Matthew Gillespie answered Matthew Gillespie commented

You could play the WalkWithBriefcase animation before walking which will override the WalkLoaded animation since it's lower in the list of animations:

walkwithbriefcase.fsm

In 20.0 there's a new feature that lets you set a variable on the person to say which animation is should use for it's walking loaded animation. You just need to set the walkLoadedAnimation variable to the name of the animation you want it to play:

  1. Object person = token.Person;
  2. person.setVariable("walkLoadedAnimation", "WalkWithBriefcase");

walkwithbriefcase2020.fsm


· 6
5 |100000

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