您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
33 行
1.1 KiB
33 行
1.1 KiB
using System;
|
|
using UnityEditor.Graphing;
|
|
using UnityEditor.UIElements;
|
|
using UnityEngine;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace UnityEditor.ShaderGraph.Drawing.Slots
|
|
{
|
|
class ScreenPositionSlotControlView : VisualElement
|
|
{
|
|
ScreenPositionMaterialSlot m_Slot;
|
|
|
|
public ScreenPositionSlotControlView(ScreenPositionMaterialSlot slot)
|
|
{
|
|
styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/ScreenPositionSlotControlView"));
|
|
m_Slot = slot;
|
|
var enumField = new EnumField(slot.screenSpaceType);
|
|
enumField.RegisterValueChangedCallback(OnValueChanged);
|
|
Add(enumField);
|
|
}
|
|
|
|
void OnValueChanged(ChangeEvent<Enum> evt)
|
|
{
|
|
var screenSpaceType = (ScreenSpaceType)evt.newValue;
|
|
if (screenSpaceType != m_Slot.screenSpaceType)
|
|
{
|
|
m_Slot.owner.owner.owner.RegisterCompleteObjectUndo("Change Screen Space Type");
|
|
m_Slot.screenSpaceType = screenSpaceType;
|
|
m_Slot.owner.Dirty(ModificationScope.Graph);
|
|
}
|
|
}
|
|
}
|
|
}
|