您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
33 行
1.1 KiB
33 行
1.1 KiB
using UnityEditor.Graphing;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
public class TestSlot : MaterialSlot
|
|
{
|
|
public TestSlot() {}
|
|
|
|
public TestSlot(int slotId, string displayName, SlotType slotType, ShaderStageCapability stageCapability = ShaderStageCapability.All, bool hidden = false)
|
|
: base(slotId, displayName, displayName, slotType, stageCapability, hidden) {}
|
|
|
|
public TestSlot(int slotId, string displayName, SlotType slotType, int priority, ShaderStageCapability stageCapability = ShaderStageCapability.All, bool hidden = false)
|
|
: base(slotId, displayName, displayName, slotType, priority, stageCapability, hidden) {}
|
|
|
|
public override SlotValueType valueType
|
|
{
|
|
get { return SlotValueType.Vector4; }
|
|
}
|
|
|
|
public override ConcreteSlotValueType concreteValueType
|
|
{
|
|
get { return ConcreteSlotValueType.Vector4; }
|
|
}
|
|
|
|
public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
|
|
{
|
|
}
|
|
|
|
public override void CopyValuesFrom(MaterialSlot foundSlot)
|
|
{
|
|
}
|
|
}
|
|
}
|