스크립트 제어 애니메이션 이벤트
4966 단어 animation
using UnityEngine;
using System.Collections;
using UnityEditor;
public class AddEventsToAnimations : MonoBehaviour {
[MenuItem("Assets/Demo2/Add animations events")] // editor menu
static void AddEvents()
{
float t = 0.03333f;
int i = 0;
string attack01str = "Assets/My Project/Raw Data/Character/Hero/Anis/Attack01.anim";
const int nLen = 4;
AnimationEvent[] arr = new AnimationEvent[nLen];
// 3
int[] attack01time = new int[nLen-1]{10,25,40};
//
AnimationClip attack01clip = AssetDatabase.LoadMainAssetAtPath(attack01str) as AnimationClip;
if (attack01clip == null)
{
Debug.Log("attack 01 clip is null");
return;
}
//
for (i = 0; i < attack01time.Length; i++)
{
AnimationEvent attack01 = new AnimationEvent();
attack01.functionName = "NotifyAttack1";
attack01.time = t * attack01time[i];
arr[i] = attack01;
}
// ,
AnimationEvent attack011 = new AnimationEvent();
attack011.functionName = "NotifyAttackEnd";
attack011.time = t * 70;
attack011.stringParameter = "Attack01";
arr[i] = attack011;
// editor
AnimationUtility.SetAnimationEvents(attack01clip, arr);
}
http://jiaowodouge.blog.163.com/blog/static/187245168201171142327625/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
How to make animation on scroll ?There have so many animation for icon scroll, but today we will do animation type arrow run down like animated last post...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.