[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/Unity.GraphToolkit.Editor.GraphOptions.html [Back]  [Original]

Unity - Scripting API: GraphOptions
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    GraphOptions

    enumeration

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Description

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

    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.

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

    Properties

    Property Description
    SupportsSubgraphs Indicates that this graph supports subgraphs.
    DisableAutoInclusionOfNodesFromGraphAssembly Indicates that nodes (i.e., subclasses of Node) defined in the same assembly as the graph are not automatically added to the graph item library.
    Default The default graph configuration.
    None No graph options enabled.

    Web Proxy Viewer  |  New URL  |  Original Page