Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetAnimationClips

Retrieves an array of animation clips associated with a GameObject or component. GetAnimationClips(Animation) is obsolete and has been replaced with GetAnimationClips(GameObject).
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor

GetAnimationClips(Animation)

Retrieves an array of animation clips associated with a GameObject or component.
GetAnimationClips(Animation)
is obsolete and has been replaced with
GetAnimationClips(GameObject)
.
Warning
Deprecated. GetAnimationClips(Animation) is deprecated. Use GetAnimationClips(GameObject) instead.
public static AnimationClip[] GetAnimationClips(Animation component)

Parameters

component

Returns

Type

Description

AnimationClip[]

Remarks

This method retrieves animation clips from the Animator or Animation component. This method works with any component that has implemented the IAnimationClipSource interface.

GetAnimationClips(GameObject)

Retrieves an array of animation clips associated with a GameObject or component.
GetAnimationClips(Animation)
is obsolete and has been replaced with
GetAnimationClips(GameObject)
.
public static AnimationClip[] GetAnimationClips(GameObject gameObject)

Parameters

gameObject

Returns

Type

Description

AnimationClip[]

Remarks

This method retrieves animation clips from the Animator or Animation component. This method works with any component that has implemented the IAnimationClipSource interface.