Create
Creates a PlayableGraph.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine.Playables
- Assembly: UnityEngine.CoreModule
Create()
Creates a PlayableGraph.
public static PlayableGraph Create()
Returns
Type | Description |
|---|---|
| PlayableGraph | The newly created PlayableGraph. |
Remarks
The is optional but it can help when using editor tools, like the GraphVisualizer.
nameCreate(string)
Creates a PlayableGraph.
public static PlayableGraph Create(string name)
Parameters
The name of the graph.
Returns
Type | Description |
|---|---|
| PlayableGraph | The newly created PlayableGraph. |
Remarks
The is optional but it can help when using editor tools, like the GraphVisualizer.
name