# Create

> Creates a PlayableGraph.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Playables](/engine/6000.6/script-reference/unityengine/playables.md)
* **Assembly:** UnityEngine.CoreModule

## Create()

Creates a [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md).

```csharp
public static PlayableGraph Create()
```

### Returns

| Type                                                                                    | Description                                                                                                |
| --------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md) | The newly created [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md). |

### Remarks

The [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md) is created without a [Playable](/engine/6000.6/script-reference/unityengine/playables/playable.md) and a [PlayableOutput](/engine/6000.6/script-reference/unityengine/playables/playableoutput.md).

The `name` is optional but it can help when using editor tools, like the GraphVisualizer.

## Create(string)

Creates a [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md).

```csharp
public static PlayableGraph Create(string name)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The name of the graph.

### Returns

| Type                                                                                    | Description                                                                                                |
| --------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md) | The newly created [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md). |

### Remarks

The [PlayableGraph](/engine/6000.6/script-reference/unityengine/playables/playablegraph.md) is created without a [Playable](/engine/6000.6/script-reference/unityengine/playables/playable.md) and a [PlayableOutput](/engine/6000.6/script-reference/unityengine/playables/playableoutput.md).

The `name` is optional but it can help when using editor tools, like the GraphVisualizer.
