1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using UnityEditor.Graphing;
- namespace UnityEditor.ShaderGraph
- {
- [Serializable]
- class GradientMaterialSlot : MaterialSlot
- {
- public GradientMaterialSlot()
- {
- }
- public GradientMaterialSlot(
- int slotId,
- string displayName,
- string shaderOutputName,
- SlotType slotType,
- ShaderStageCapability stageCapability = ShaderStageCapability.All,
- bool hidden = false)
- : base(slotId, displayName, shaderOutputName, slotType, stageCapability, hidden)
- {
- }
- public override SlotValueType valueType { get { return SlotValueType.Gradient; } }
- public override ConcreteSlotValueType concreteValueType { get { return ConcreteSlotValueType.Gradient; } }
- public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
- {
- }
- public override void CopyValuesFrom(MaterialSlot foundSlot)
- {
- }
- }
- }
|