您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
503 B
27 行
503 B
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.Graphing
|
|
{
|
|
[Serializable]
|
|
public 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; }
|
|
}
|
|
}
|
|
}
|