MatrixNames.cs 584 B

12345678910111213141516
  1. using System;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. struct MatrixNames
  5. {
  6. public const string Model = "UNITY_MATRIX_M";
  7. public const string ModelInverse = "UNITY_MATRIX_I_M";
  8. public const string View = "UNITY_MATRIX_V";
  9. public const string ViewInverse = "UNITY_MATRIX_I_V";
  10. public const string Projection = "UNITY_MATRIX_P";
  11. public const string ProjectionInverse = "UNITY_MATRIX_I_P";
  12. public const string ViewProjection = "UNITY_MATRIX_VP";
  13. public const string ViewProjectionInverse = "UNITY_MATRIX_I_VP";
  14. }
  15. }