91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity3D中如何通過Animator動畫狀態機獲取任意animation clip的準確播放持續時長

發布時間:2021-12-24 16:29:30 來源:億速云 閱讀:1291 作者:小新 欄目:大數據

這篇文章將為大家詳細講解有關Unity3D中如何通過Animator動畫狀態機獲取任意animation clip的準確播放持續時長,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Unity3D中如何通過Animator動畫狀態機獲取任意animation clip的準確播放持續時長

Unity3d 4及之前的版本中動畫的播放用的animation,可直接獲取其播放持續長度。但5.x及以后的版本中都是用animator來播放動畫了。

https://docs.unity3d.com/Manual/AnimationOverview.html 

While Mecanim is recommended for use in most situations, Unity has retained its legacy animation system which existed before Unity 4. You may need to use when working with older content created before Unity 4. For information on the Legacy animation system, see this section

關于在animator下如何獲取其播放持續時長,很多人用的 GetCurrentAnimatorStateInfo 及 GetNextAnimatorStateInfo 等,但這個都不是最終核實的解決方案。

如下才是通過Animator動畫狀態機獲取任意animation clip的準確播放持續時長的正確的、準確的姿勢:

///獲取動畫狀態機animator的動畫clip的播放持續時長
///@MarsZ 2017年12月19日20:46:20
///site:www.u3dnotes.com
public static class AnimatorExt 
{
	public static float GetClipLength(this Animator animator,string clip) 
	{
		if(null== animator || string.IsNullOrEmpty(clip) || null== animator.runtimeAnimatorController)
		          return 0;
		RuntimeAnimatorController ac = animator.runtimeAnimatorController;
		AnimationClip[] tAnimationClips =  ac.animationClips;
		if( null == tAnimationClips || tAnimationClips.Length <= 0) return 0;
		AnimationClip  tAnimationClip ;
		for (int tCounter = 0 ,tLen = tAnimationClips.Length; tCounter < tLen ; tCounter ++) 
		{
			tAnimationClip = ac.animationClips[i];
			if(null != tAnimationClip && tAnimationClip.name == clip)
			              return tAnimationClip.Length;
		}
		return 0F;
	}
}

關于“Unity3D中如何通過Animator動畫狀態機獲取任意animation clip的準確播放持續時長”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东源县| 洮南市| 东乌珠穆沁旗| 湛江市| 当阳市| 崇阳县| 四子王旗| 称多县| 武胜县| 芜湖县| 巴中市| 静海县| 通城县| 开江县| 新平| 永济市| 寻乌县| 三门峡市| 南木林县| 原平市| 报价| 大安市| 闻喜县| 岳西县| 新巴尔虎右旗| 清涧县| 布尔津县| 庄浪县| 留坝县| 道孚县| 洪江市| 抚顺县| 清水县| 凤台县| 平安县| 汝城县| 锦州市| 潜江市| 张掖市| 当涂县| 京山县|