You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
792 B
25 lines
792 B
using System;
|
|
using UnityEditor.ShaderGraph.Drawing.Slots;
|
|
using UnityEngine.UIElements;
|
|
using UnityEditor.Graphing;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Serializable]
|
|
class DefaultMaterialSlot : Vector3MaterialSlot
|
|
{
|
|
public DefaultMaterialSlot()
|
|
{ }
|
|
|
|
public DefaultMaterialSlot(int slotId, string displayName, string shaderOutputName,
|
|
ShaderStageCapability stageCapability = ShaderStageCapability.All, bool hidden = false)
|
|
: base(slotId, displayName, shaderOutputName, SlotType.Input, Vector3.zero, stageCapability, hidden: hidden)
|
|
{ }
|
|
|
|
public override VisualElement InstantiateControl()
|
|
{
|
|
return new LabelSlotControlView("Default");
|
|
}
|
|
}
|
|
}
|