Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Partial animation

Discussion in 'Animation' started by Torvald, Mar 2, 2015.

  1. Torvald

    Torvald

    Joined:
    Oct 2, 2013
    Posts:
    3
    Hi, can I move during the animation objects from this animation? For example, during the animation run manually move the character's head.
     
  2. Mecanim-Dev

    Mecanim-Dev

    Joined:
    Nov 26, 2012
    Posts:
    1,675
    You can override the animation system in the MonoBehaviour.LateUpdate() callback which is called after all the animation step are done.

    Simply write into the transform component of your character's head directly.
     
    Torvald likes this.
  3. Torvald

    Torvald

    Joined:
    Oct 2, 2013
    Posts:
    3
    Thank you