Tim Cooper
9 年前
当前提交
3e4c0174
共有 10 个文件被更改,包括 83 次插入 和 92 次删除
-
37UnityProject/Assets/GraphFramework/SerializableGraph/Editor/Drawing/DrawableNode.cs
-
5UnityProject/Assets/GraphFramework/SerializableGraph/Editor/Drawing/GraphEditWindow.cs
-
28UnityProject/Assets/GraphFramework/SerializableGraph/Editor/Implementation/SerializableNode.cs
-
2UnityProject/Assets/GraphFramework/SerializableGraph/Editor/Interfaces/INode.cs
-
34UnityProject/Assets/UnityShaderEditor/Editor/Nodes/AbstractMaterialNode.cs
-
10UnityProject/Assets/UnityShaderEditor/Editor/Nodes/PixelShaderNode.cs
-
27UnityProject/Assets/GraphFramework/SerializableGraph/Editor/Interfaces/DrawingData.cs
-
12UnityProject/Assets/GraphFramework/SerializableGraph/Editor/Interfaces/DrawingData.cs.meta
-
8UnityProject/Assets/UnityShaderEditor/Editor/Nodes/DrawMode.cs
-
12UnityProject/Assets/UnityShaderEditor/Editor/Nodes/DrawMode.cs.meta
|
|||
using System; |
|||
using UnityEngine; |
|||
|
|||
namespace UnityEditor.Graphing |
|||
{ |
|||
[Serializable] |
|||
public struct DrawingData |
|||
{ |
|||
[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; } |
|||
} |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: c85b5b63a005833438cd315d952735de |
|||
timeCreated: 1464272094 |
|||
licenseType: Pro |
|||
MonoImporter: |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|
|||
namespace UnityEditor.MaterialGraph |
|||
{ |
|||
public enum DrawMode |
|||
{ |
|||
Full, |
|||
Collapsed |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: b11454ef93315fe4abbcb38de383ef76 |
|||
timeCreated: 1463576280 |
|||
licenseType: Pro |
|||
MonoImporter: |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
撰写
预览
正在加载...
取消
保存
Reference in new issue