Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GraphOptions

Flags that define configuration options that affect the behavior and capabilities of a Graph class.
Read time 1 minuteLast updated 6 days ago

Definition

[Flags]public enum GraphOptions

Remarks

Use the GraphOptions enum in conjunction with the GraphAttribute to customize how a graph behaves, including support for subgraphs and automatic node discovery. The default value is GraphOptions.Default, which enables standard behavior such as allowing nodes defined in the same assembly as the graph to be automatically included in the graph item library. Combine flags to customize behavior. This enum is marked with FlagsAttribute, so you can combine values using bitwise operations to enable multiple options.
This example keeps the default behavior and adds support for subgraphs by enabling GraphOptions.SupportsSubgraphs.

Examples

[Graph("mygraph", GraphOptions.SupportsSubgraphs)]public class MyGraph : Graph { }

Fields

Value

Description

DefaultThe default graph configuration.
DisableAutoInclusionOfNodesFromGraphAssemblyIndicates that nodes (i.e., subclasses of Node) defined in the same assembly as the graph are not automatically added to the graph item library.
NoneNo graph options enabled.
SupportsSubgraphsIndicates that this graph supports subgraphs.