# Create(PlayableGraph, VideoClip, bool)

> Creates a VideoClipPlayable in the PlayableGraph.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Experimental.Video](/engine/6000.3/script-reference/unityengine/experimental/video.md)
* **Assembly:** UnityEngine.VideoModule

```csharp
public static VideoClipPlayable Create(PlayableGraph graph, VideoClip clip, bool looping)
```

### Parameters

**** (\[PlayableGraph]\(/engine/6000.3/script-reference/unityengine/playables/playablegraph)): The [PlayableGraph](/engine/6000.3/script-reference/unityengine/playables/playablegraph.md) object that will own the [VideoClipPlayable](/engine/6000.3/script-reference/unityengine/experimental/video/videoclipplayable.md).**** (\[VideoClip]\(/engine/6000.3/script-reference/unityengine/video/videoclip)): [VideoClip](/engine/6000.3/script-reference/unityengine/video/videoclip.md) used to produce textures in the [PlayableGraph](/engine/6000.3/script-reference/unityengine/playables/playablegraph.md).**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): Indicates if [VideoClip](/engine/6000.3/script-reference/unityengine/video/videoclip.md) loops when it reaches the end.

### Returns

| Type                                                                                                     | Description                                                                                                                                                                                                       |
| -------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [VideoClipPlayable](/engine/6000.3/script-reference/unityengine/experimental/video/videoclipplayable.md) | A [VideoClipPlayable](/engine/6000.3/script-reference/unityengine/experimental/video/videoclipplayable.md) linked to the [PlayableGraph](/engine/6000.3/script-reference/unityengine/playables/playablegraph.md). |
