天天看點

unity3d:動畫animator,AvatarMask,邊走邊攻擊,單獨設定run動畫速度

分為3layer,run-idel層(layer0),攻擊時上半身層(layer1),原地攻擊層(layer2),其中layer1,layer2裡面完全複制的動畫狀态機

unity3d:動畫animator,AvatarMask,邊走邊攻擊,單獨設定run動畫速度

其中layer1設定mask,屏蔽下半身動作

unity3d:動畫animator,AvatarMask,邊走邊攻擊,單獨設定run動畫速度

在移動時切換layer1,layer2的權重,同時隻存在一個為0,一個為1

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AI;

public class PlayerCtrl : MonoBehaviour {
    public NavMeshAgent m_agent;
    public Animator m_ani;
    Vector3 m_newPos;
    float m_stopDis = 0.02f;
    public static int IsRunning = Animator.StringToHash("IsRunning");
    public static int AttackID = Animator.StringToHash("AttackID");

    bool m_isRunning = false;
    public Transform m_model;
    public float m_rotateSpeed = 180f;
    // Use this for initialization
    void Start () {
        m_newPos = transform.position;
       
        m_ani.SetLayerWeight(1, 0);
        m_ani.SetLayerWeight(2, 1);
    }

    
    // Update is called once per frame
    void Update () {
        //滑鼠左鍵
        if (Input.GetMouseButtonDown(0))
        {
            //射線檢測
            Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
            RaycastHit hit;
            bool isCollider = Physics.Raycast(ray, out hit);
            if (isCollider)
            {
             
                m_agent.SetDestination(hit.point);
                m_newPos = hit.point;
            }
        }

        if (m_agent.hasPath)
        {
          
            if (m_isRunning == false)
            {
                m_isRunning = true;
                m_ani.SetBool(IsRunning, true);

                m_ani.SetLayerWeight(1, 1);
                m_ani.SetLayerWeight(2, 0);
            }
        }
        else {
            if (m_isRunning == true)
            {
                m_isRunning = false;
                m_ani.SetBool(IsRunning, false);

                m_ani.SetLayerWeight(1, 0);
                m_ani.SetLayerWeight(2, 1);
            }
        }

        if (Input.GetKeyDown(KeyCode.Q))
        {
            m_ani.SetInteger(AttackID, 1);
        }
    }
}      

原地攻擊動作

unity3d:動畫animator,AvatarMask,邊走邊攻擊,單獨設定run動畫速度

邊走邊攻擊動作

unity3d:動畫animator,AvatarMask,邊走邊攻擊,單獨設定run動畫速度

繼續閱讀