Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Create

Creates a PlayableGraph.
Read time 1 minuteLast updated 6 days ago

Definition

Create()

Creates a PlayableGraph.
public static PlayableGraph Create()

Returns

Type

Description

PlayableGraphThe newly created PlayableGraph.

Remarks

The PlayableGraph is created without a Playable and a PlayableOutput.
The
name
is optional but it can help when using editor tools, like the GraphVisualizer.

Create(string)

Creates a PlayableGraph.
public static PlayableGraph Create(string name)

Parameters

name

The name of the graph.

Returns

Type

Description

PlayableGraphThe newly created PlayableGraph.

Remarks

The PlayableGraph is created without a Playable and a PlayableOutput.
The
name
is optional but it can help when using editor tools, like the GraphVisualizer.