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

arms and gun animation

Discussion in 'Scripting' started by iSwat22, Aug 7, 2012.

  1. iSwat22

    iSwat22

    Joined:
    Aug 14, 2011
    Posts:
    50
    i have this arms and gun animation that was done in blender when i import it to unity the animation don't work do i need a script to make the arms and gun to move and reload can anyone help me on this ?

    Thank You for any help on this :)
     
  2. Rastafari

    Rastafari

    Joined:
    Jul 18, 2011
    Posts:
    196
    Here is some untested code.

    Code (csharp):
    1. function Update(){
    2.  
    3. if(Input.GetKeyDown(KeyCode.R)){
    4. animation.Play();
    5. }
    6. }

    Sorry if it diddnt help or worked.
     
    Last edited: Aug 7, 2012