GenerationResults.cs 589 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEditor.ShaderGraph.Internal;
  4. namespace UnityEditor.ShaderGraph
  5. {
  6. class GenerationResults
  7. {
  8. public string shader { get; set; }
  9. public List<PropertyCollector.TextureInfo> configuredTextures;
  10. public PreviewMode previewMode { get; set; }
  11. public Vector1ShaderProperty outputIdProperty { get; set; }
  12. public ShaderSourceMap sourceMap { get; set; }
  13. public GenerationResults()
  14. {
  15. configuredTextures = new List<PropertyCollector.TextureInfo>();
  16. }
  17. }
  18. }