您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
40 行
1.1 KiB
40 行
1.1 KiB
using System;
|
|
using System.Linq;
|
|
using UnityEditor.Graphing;
|
|
using UnityEngine;
|
|
using UnityEngine.Experimental.UIElements;
|
|
|
|
namespace UnityEditor.ShaderGraph.Drawing
|
|
{
|
|
public class NodeSettingsView : VisualElement
|
|
{
|
|
VisualElement m_ContentContainer;
|
|
|
|
public NodeSettingsView()
|
|
{
|
|
pickingMode = PickingMode.Ignore;
|
|
AddStyleSheetPath("Styles/NodeSettings");
|
|
var uxml = Resources.Load<VisualTreeAsset>("UXML/NodeSettings");
|
|
uxml.CloneTree(this, null);
|
|
// Get the element we want to use as content container
|
|
m_ContentContainer = this.Q("contentContainer");
|
|
RegisterCallback<MouseDownEvent>(OnMouseDown);
|
|
RegisterCallback<MouseUpEvent>(OnMouseUp);
|
|
}
|
|
|
|
void OnMouseUp(MouseUpEvent evt)
|
|
{
|
|
evt.StopPropagation();
|
|
}
|
|
|
|
void OnMouseDown(MouseDownEvent evt)
|
|
{
|
|
evt.StopPropagation();
|
|
}
|
|
|
|
public override VisualElement contentContainer
|
|
{
|
|
get { return m_ContentContainer; }
|
|
}
|
|
}
|
|
}
|