# Create(PlayableGraph, Camera)

> Creates a CameraPlayable in the PlayableGraph.

## Definition

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

```csharp
public static CameraPlayable Create(PlayableGraph graph, Camera camera)
```

### Parameters

**** (\[PlayableGraph]\(/engine/6000.5/script-reference/unityengine/playables/playablegraph)): The [PlayableGraph](/engine/6000.5/script-reference/unityengine/playables/playablegraph.md) object that will own the [CameraPlayable](/engine/6000.5/script-reference/unityengine/experimental/playables/cameraplayable.md).**** (\[Camera]\(/engine/6000.5/script-reference/unityengine/camera)): [Camera](/engine/6000.5/script-reference/unityengine/camera.md) used to produce a texture in the [PlayableGraph](/engine/6000.5/script-reference/unityengine/playables/playablegraph.md).

### Returns

| Type                                                                                                   | Description                                                                                                                                                                                                     |
| ------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [CameraPlayable](/engine/6000.5/script-reference/unityengine/experimental/playables/cameraplayable.md) | A [CameraPlayable](/engine/6000.5/script-reference/unityengine/experimental/playables/cameraplayable.md) linked to the [PlayableGraph](/engine/6000.5/script-reference/unityengine/playables/playablegraph.md). |
