docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Enum GraphOptions

    Flags that define configuration options that affect the behavior and capabilities of a Graph class.

    Namespace: Unity.GraphToolkit.Editor
    Assembly: Unity.GraphToolkit.Editor.dll
    Syntax
    [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 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.

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

    This example keeps the default behavior and adds support for subgraphs by combining Default with SupportsSubgraphs.

    Fields

    Name Description
    AutoIncludeNodesFromGraphAssembly

    Indicates that user-defined nodes (i.e., subclasses of Node) located in the same assembly as the graph will be automatically added to the graph item library.

    Default

    The default graph configuration. It currently includes AutoIncludeNodesFromGraphAssembly.

    None

    No graph options enabled.

    SupportsSubgraphs

    Indicates that this graph supports subgraphs.

    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)