# Create(PlayableGraph, string, Animator)

> Creates an AnimationPlayableOutput in the PlayableGraph.

## Definition

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

```csharp
public static AnimationPlayableOutput Create(PlayableGraph graph, string name, Animator target)
```

### Parameters

**** (\[PlayableGraph]\(/engine/6000.6/script-reference/unityengine/playables/playablegraph)): The [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md) that will contain the [AnimationPlayableOutput](/engine/6000.6/script-reference/unityengine/animations/animationplayableoutput.md).**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The name of the output.**** (\[Animator]\(/engine/6000.6/script-reference/unityengine/animator)): The [Animator](/engine/6000.6/script-reference/unityengine/animator.md) that will process the [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md).

### Returns

| Type                                                                                                         | Description                                                                                                                                                                                                                 |
| ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [AnimationPlayableOutput](/engine/6000.6/script-reference/unityengine/animations/animationplayableoutput.md) | A new [AnimationPlayableOutput](/engine/6000.6/script-reference/unityengine/animations/animationplayableoutput.md) attached to the [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md). |

### Remarks

The [Animator](/engine/6000.6/script-reference/unityengine/animator.md) plays the source [Playable](/engine/6000.6/script-reference/unityengine/playables/playable.md) of the [AnimationPlayableOutput](/engine/6000.6/script-reference/unityengine/animations/animationplayableoutput.md). This source Playable can be set with SetSourcePlayable.
