以下のように記述すると取得できる。
Animator animator = GetComponent<Animator>();
var clipInfo = animator.GetCurrentAnimatorClipInfo(0)[0]; // 引数はLayer番号、配列の0番目
Debug.Log("AnimationClip名 : " + clipInfo.clip.name);
Go to list of users who liked
More than 5 years have passed since last update.
以下のように記述すると取得できる。
Animator animator = GetComponent<Animator>();
var clipInfo = animator.GetCurrentAnimatorClipInfo(0)[0]; // 引数はLayer番号、配列の0番目
Debug.Log("AnimationClip名 : " + clipInfo.clip.name);
Register as a new user and use Qiita more conveniently
Go to list of users who liked