• 官方 Animator 例子解析 Animator.MatchTarget


    一、官方的解释

     1 Animator.MatchTargetSwitch to Manual
     2 void MatchTarget(Vector3 matchPosition, Quaternion matchRotation, AvatarTarget targetBodyPart, MatchTargetWeightMask weightMask, float startNormalizedTime, float targetNormalizedTime = 1);
     3 Parameters
     4 
     5 matchPosition    The position we want the body part to reach.
     6 matchRotation    The rotation in which we want the body part to be.
     7 targetBodyPart    The body part that is involved in the match.
     8 weightMask    Structure that contains weights for matching position and rotation.
     9 startNormalizedTime    Start time within the animation clip (0 - beginning of clip, 1 - end of clip).
    10 targetNormalizedTime    End time within the animation clip (0 - beginning of clip, 1 - end of clip), values greater than 1 can be set to trigger a match after a certain number of loops. Ex: 2.3 means at 30% of 2nd loop.
    11 Description
    12 
    13 Automatically adjust the gameobject position and rotation so that the AvatarTarget reaches the matchPosition when the current state is at the specified progress.
    14 
    15 Target matching only works on the base layer (index 0).

    二、理解

    这个 一般 用于 根运动 动画。 可以用在 人物攀爬 或者 掉落 的动画 时候 进行一些 位置的调整。具体在于理解。上一段官方的例子教程。

     1 using UnityEngine;
     2 using System.Collections;
     3 
     4 public class TargetMatching : MonoBehaviour
     5 {
     6 
     7     private Animator animator;
     8     /// <summary>
     9     /// 匹配 目标
    10     /// </summary>
    11     public Transform RightHand;
    12     bool hasJumped = false;
    13 
    14 
    15     // Use this for initialization
    16     void Start () {
    17 
    18         animator = GetComponent<Animator>();
    19     
    20     }
    21 
    22     void OnGUI()
    23     {
    24         GUILayout.Label("Make your character grab any edge!");
    25         GUILayout.Label("Press Fire1 to trigger Jump animation");
    26         GUILayout.Label("Added *MatchStart* and *MatchEnd* parameters to the Animator Controller");
    27         GUILayout.Label("Added *MatchStart* and *MatchEnd* additionnal curves to the Idle_ToJumpUpHigh animation");
    28         GUILayout.Label("*MatchStart* and *MatchEnd* tell the system when to start cheating the root using MatchTarget API");
    29         GUILayout.Label("Added a RightHand model child of the MoveThis container, to tell where the right hand should go");
    30         GUILayout.Label("On the update function, we call MatchTarget");
    31         GUILayout.Label("Translate the MoveThis object and see how character's hand always reach it");        
    32     }
    33     
    34     // Update is called once per frame
    35     void Update () 
    36     {
    37 
    38         if (animator)
    39         {
    40             AnimatorStateInfo state = animator.GetCurrentAnimatorStateInfo(0);
    41 
    42             if (Input.GetButton("Fire1")) animator.SetBool("Jump", true);
    43 
    44             if (state.IsName("Base Layer.JumpUp") || state.IsName("Base Layer.FullJump")) 
    45             {
    46                 animator.SetBool("Jump", false);
    47                                                     
    48                 animator.MatchTarget(
    49                     RightHand.position, 
    50                     RightHand.rotation, 
    51                     AvatarTarget.RightHand, 
    52                     new MatchTargetWeightMask(new Vector3(1, 1, 1), 0), 
    53                     /// 动画 曲线 获取
    54                     animator.GetFloat("MatchStart"), 
    55                     animator.GetFloat("MatchEnd"));
    56                 hasJumped = true;
    57             }
    58 
    59             if (hasJumped && state.normalizedTime > 1.2)
    60             {
    61                 hasJumped = false;
    62                 
    63                 Application.LoadLevel(0);
    64             }
    65 
    66             Debug.Log(" animator.GetFloat MatchStart " + animator.GetFloat("MatchStart") + " state.normalizedTime " + state.normalizedTime);
    67         }
    68     
    69     }
    70 }
  • 相关阅读:
    2.舵机
    1.呼吸灯
    Python学习笔记——Matplot库
    计算机仿真技术学习笔记(一)
    48、从堆和栈上建立对象哪个快?(考察堆和栈的分配效率比较)
    47、抖动你知道是什么吗?它也叫颠簸现象
    46、交换空间与虚拟内存的关系
    44、程序从堆中动态分配内存时,虚拟内存上怎么操作的
    43、一般情况下在Linux/windows平台下栈空间的大小
    42、一个由C/C++编译的程序占用的内存分为哪几个部分?
  • 原文地址:https://www.cnblogs.com/chongxin/p/4104441.html
Copyright © 2020-2023  润新知