VectorShaderProperty.cs 723 B

1234567891011121314151617181920
  1. using System;
  2. using System.Text;
  3. using UnityEditor.Graphing;
  4. using UnityEngine;
  5. namespace UnityEditor.ShaderGraph.Internal
  6. {
  7. [Serializable]
  8. public abstract class VectorShaderProperty : AbstractShaderProperty<Vector4>
  9. {
  10. internal override bool isBatchable => true;
  11. internal override bool isExposable => true;
  12. internal override bool isRenamable => true;
  13. internal override string GetPropertyBlockString()
  14. {
  15. return $"{hideTagString}{referenceName}(\"{displayName}\", Vector) = ({NodeUtils.FloatToShaderValue(value.x)}, {NodeUtils.FloatToShaderValue(value.y)}, {NodeUtils.FloatToShaderValue(value.z)}, {NodeUtils.FloatToShaderValue(value.w)})";
  16. }
  17. }
  18. }