xyi/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Data/Interfaces/Graph/DrawState.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

28 lines
496 B
C#

using System;
using UnityEngine;
namespace UnityEditor.Graphing
{
[Serializable]
struct DrawState
{
[SerializeField]
private bool m_Expanded;
[SerializeField]
private Rect m_Position;
public bool expanded
{
get { return m_Expanded; }
set { m_Expanded = value; }
}
public Rect position
{
get { return m_Position; }
set { m_Position = value; }
}
}
}