Assets.Characters.Elephant.Scripts.AnimationControl.DidPose C# (CSharp) Method

DidPose() public method

public DidPose ( int animationId ) : void
animationId int
return void
        public void DidPose(int animationId)
        {
            ReadyToPose();
            gameObject.GetComponentInChildren<Animator>().SetInteger("poseID", poseIndex);
            Debug.Log(poseIndex);
            ReturnToNeutral();
        }