# Create(PlayableGraph, AnimationClip)

> Creates an AnimationClipPlayable in the PlayableGraph.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Animations](/engine/6000.6/script-reference/unityengine/animations.md)
* **Assembly:** UnityEngine.AnimationModule

```csharp
public static AnimationClipPlayable Create(PlayableGraph graph, AnimationClip clip)
```

### Parameters

**** (\[PlayableGraph]\(/engine/6000.6/script-reference/unityengine/playables/playablegraph)): The PlayableGraph object that will own the AnimationClipPlayable.**** (\[AnimationClip]\(/engine/6000.6/script-reference/unityengine/animationclip)): The AnimationClip that will be added in the PlayableGraph.

### Returns

| Type                                                                                                     | Description                                                                                                                                                                                                       |
| -------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [AnimationClipPlayable](/engine/6000.6/script-reference/unityengine/animations/animationclipplayable.md) | A [AnimationClipPlayable](/engine/6000.6/script-reference/unityengine/animations/animationclipplayable.md) linked to the [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md). |
