您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
95 行
2.8 KiB
95 行
2.8 KiB
using System;
|
|
using UnityEditor.ShaderGraph.Drawing.Controls;
|
|
using UnityEngine;
|
|
using UnityEditor.Graphing;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Input", "Texture", "Sampler State")]
|
|
public class SamplerStateNode : AbstractMaterialNode
|
|
{
|
|
[SerializeField]
|
|
private TextureSamplerState.FilterMode m_filter = TextureSamplerState.FilterMode.Linear;
|
|
|
|
[EnumControl]
|
|
public TextureSamplerState.FilterMode filter
|
|
{
|
|
get { return m_filter; }
|
|
set
|
|
{
|
|
if (m_filter == value)
|
|
return;
|
|
|
|
m_filter = value;
|
|
Dirty(ModificationScope.Graph);
|
|
}
|
|
}
|
|
|
|
[SerializeField]
|
|
private TextureSamplerState.WrapMode m_wrap = TextureSamplerState.WrapMode.Repeat;
|
|
|
|
[EnumControl]
|
|
public TextureSamplerState.WrapMode wrap
|
|
{
|
|
get { return m_wrap; }
|
|
set
|
|
{
|
|
if (m_wrap == value)
|
|
return;
|
|
|
|
m_wrap = value;
|
|
Dirty(ModificationScope.Graph);
|
|
}
|
|
}
|
|
|
|
public SamplerStateNode()
|
|
{
|
|
name = "Sampler State";
|
|
UpdateNodeAfterDeserialization();
|
|
}
|
|
|
|
public override string documentationURL
|
|
{
|
|
get { return "https://github.com/Unity-Technologies/ShaderGraph/wiki/Sampler-State-Node"; }
|
|
}
|
|
|
|
public override bool hasPreview { get { return false; } }
|
|
|
|
private const int kOutputSlotId = 0;
|
|
private const string kOutputSlotName = "Out";
|
|
|
|
public sealed override void UpdateNodeAfterDeserialization()
|
|
{
|
|
AddSlot(new SamplerStateMaterialSlot(kOutputSlotId, kOutputSlotName, kOutputSlotName, SlotType.Output));
|
|
RemoveSlotsNameNotMatching(new[] { kOutputSlotId });
|
|
}
|
|
|
|
public override string GetVariableNameForSlot(int slotId)
|
|
{
|
|
return GetVariableNameForNode();
|
|
}
|
|
|
|
public override void CollectShaderProperties(PropertyCollector properties, GenerationMode generationMode)
|
|
{
|
|
properties.AddShaderProperty(new SamplerStateShaderProperty()
|
|
{
|
|
overrideReferenceName = GetVariableNameForNode(),
|
|
generatePropertyBlock = false,
|
|
|
|
value = new TextureSamplerState()
|
|
{
|
|
filter = m_filter,
|
|
wrap = m_wrap
|
|
}
|
|
});
|
|
}
|
|
|
|
public override string GetVariableNameForNode()
|
|
{
|
|
string ss = NodeUtils.GetHLSLSafeName(name) + "_"
|
|
+ Enum.GetName(typeof(TextureSamplerState.FilterMode), filter) + "_"
|
|
+ Enum.GetName(typeof(TextureSamplerState.WrapMode), wrap) + "_sampler";
|
|
return ss;
|
|
}
|
|
}
|
|
}
|