Stacks.shadervariantlist 959 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "Shader": "Shaders/ComprehensiveTestMaterial/Stacks.shader",
  3. // Note that we don't include pre-compiled ProgramVariants for some shader option values like o_stackCount, to demonstrate the variant fallback feature.
  4. "Variants": [
  5. {
  6. "StableId": 1,
  7. "Options": {
  8. "o_wobbleDirection": "Direction::Left",
  9. "o_stackIndex": 0
  10. }
  11. },
  12. {
  13. "StableId": 2,
  14. "Options": {
  15. "o_wobbleDirection": "Direction::Right",
  16. "o_stackIndex": 1
  17. }
  18. },
  19. {
  20. "StableId": 3,
  21. "Options": {
  22. "o_wobbleDirection": "Direction::Up",
  23. "o_stackIndex": 2
  24. }
  25. },
  26. {
  27. "StableId": 4,
  28. "Options": {
  29. "o_wobbleDirection": "Direction::Down",
  30. "o_stackIndex": 3
  31. }
  32. }
  33. ]
  34. }