SamplerStateMaterialSlot.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using UnityEditor.Graphing;
  3. namespace UnityEditor.ShaderGraph
  4. {
  5. [Serializable]
  6. class SamplerStateMaterialSlot : MaterialSlot
  7. {
  8. public SamplerStateMaterialSlot()
  9. {
  10. }
  11. public SamplerStateMaterialSlot(
  12. int slotId,
  13. string displayName,
  14. string shaderOutputName,
  15. SlotType slotType,
  16. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  17. bool hidden = false)
  18. : base(slotId, displayName, shaderOutputName, slotType, stageCapability, hidden)
  19. {
  20. }
  21. public override string GetDefaultValue(GenerationMode generationMode)
  22. {
  23. var matOwner = owner as AbstractMaterialNode;
  24. if (matOwner == null)
  25. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  26. return $"{matOwner.GetVariableNameForSlot(id)}_Linear_Repeat";
  27. }
  28. public override SlotValueType valueType { get { return SlotValueType.SamplerState; } }
  29. public override ConcreteSlotValueType concreteValueType { get { return ConcreteSlotValueType.SamplerState; } }
  30. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  31. {
  32. var matOwner = owner as AbstractMaterialNode;
  33. if (matOwner == null)
  34. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  35. properties.AddShaderProperty(new SamplerStateShaderProperty()
  36. {
  37. value = new TextureSamplerState()
  38. {
  39. filter = TextureSamplerState.FilterMode.Linear,
  40. wrap = TextureSamplerState.WrapMode.Repeat
  41. },
  42. overrideReferenceName = $"{matOwner.GetVariableNameForSlot(id)}_Linear_Repeat",
  43. generatePropertyBlock = false,
  44. });
  45. }
  46. public override void CopyValuesFrom(MaterialSlot foundSlot)
  47. {
  48. }
  49. }
  50. }