ColoredLines.shader 690 B

12345678910111213141516171819202122
  1. //===============================================================================
  2. //Copyright (c) 2015-2016 PTC Inc. All Rights Reserved.
  3. //
  4. //Confidential and Proprietary - Protected under copyright and other laws.
  5. //Vuforia is a trademark of PTC Inc., registered in the United States and other
  6. //countries.
  7. //===============================================================================
  8. Shader "Custom/ColoredLines" {
  9. Properties {
  10. _Color ("Main Color", Color) = (1,1,1,1)
  11. }
  12. SubShader {
  13. Pass {
  14. Lighting Off
  15. Cull Off
  16. Blend SrcAlpha OneMinusSrcAlpha
  17. Color [_Color]
  18. }
  19. }
  20. }