WuhuIslandTesting/Library/PackageCache/com.unity.visualscripting@1.7.8/Runtime/VisualScripting.State/Framework/Graph/HasStateGraph.cs
2025-01-07 02:06:59 +01:00

22 lines
720 B
C#

using System;
using JetBrains.Annotations;
using UnityEngine;
namespace Unity.VisualScripting
{
/// <summary>
/// Check if a GameObject or StateMachine has a StateGraph
/// </summary>
[TypeIcon(typeof(StateGraph))]
[UnitCategory("Graphs/Graph Nodes")]
public sealed class HasStateGraph : HasGraph<StateGraph, StateGraphAsset, StateMachine>
{
/// <summary>
/// The type of object that handles the graph.
/// </summary>
[Serialize, Inspectable, UnitHeaderInspectable, UsedImplicitly]
public StateGraphContainerType containerType { get; set; }
protected override bool isGameObject => containerType == StateGraphContainerType.GameObject;
}
}