Hey there, I am currently trying to trigger an animator bool with the new 2D Animator tool, what I need to do is this:
animator.SetBool("Level2", false );
But from another script on another object, and so far it does not work the usual way, by doing:
public GameObject myObject;
myObject.animator.SetBool("Level2", false );
Any help is appreciated!