Posts

Showing posts from May, 2014

Unity - Pixel/Fragment Shader

Image
Shader   " Custom /SamplePixelShader "  {      Properties {          _Color  ( " Main   Color " ,  Color ) = ( 1 , 0 , 1 , 1 )          _MainTex  ( " Texture   RGBA " ,  2D ) =  " white "  {}          // _Alpha (" Alpha " , Range ( 0 , 1 )) =  0 . 5          // _SpecColor  (" Spec   Color ",  Color ) = ( 1 , 1 , 1 , 0 )          // _Emission  (" Emissive   Color ",  Color ) = ( 0 , 0 , 0 , 0 )          // _Shininess  (" Shininess ",  Range  ( 0 . 1 ,  1 )) =  0 . 7     }      Category {         ...

Unity - Surface Shader

Image
Shader   " Custom / Unlit / Hologram "  {      Properties  {          _Color  ( " Main   Color " ,  Color ) = ( 1 , 0 , 1 , 1 )          _MainTex  ( " Texture   RGBA " ,  2D ) =  " white "  {}          _Alpha ( " Alpha "  , Range ( 0 , 1 )) =  0.5          _SpecColor  ( " Spec   Color " ,  Color ) = ( 1 , 1 , 1 , 0 )          _Emission  ( " Emissive   Color " ,  Color ) = ( 0 , 0 , 0 , 0 )          _Shininess  ( " Shininess " ,  Range  ( 0.1 ,  1 )) =  0.7     }      Category     {     ...