Horje
Flip Normals play video 360 Code Example
Flip Normals play video 360
Shader "Flip Normals" {
    Properties {
        _MainTex ("Base (RGB)", 2D) = "white" {}
    }
    SubShader {

        Tags { "RenderType" = "Opaque" }

        Cull Off

        CGPROGRAM

        #pragma surface surf Lambert vertex:vert
        sampler2D _MainTex;

        struct Input {
            float2 uv_MainTex;
            float4 color : COLOR;
        };

        void vert(inout appdata_full v) {
            v.normal.xyz = v.normal * -1;
        }

        void surf (Input IN, inout SurfaceOutput o) {
             fixed3 result = tex2D(_MainTex, IN.uv_MainTex);
             o.Albedo = result.rgb;
             o.Alpha = 1;
        }

        ENDCG

    }

      Fallback "Diffuse"
}




Whatever

Related
unpickle Code Example unpickle Code Example
the man equation Code Example the man equation Code Example
programme c qui permet de determiner si M et N sont amis ou non Code Example programme c qui permet de determiner si M et N sont amis ou non Code Example
convert to tbl_df Code Example convert to tbl_df Code Example
ios simulator incorrect login appleid Code Example ios simulator incorrect login appleid Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9