Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
Shader "NGUI/Examples/Orc Armor"
{
	Properties
	{
		_Color ("Main Color", Color) = (1,1,1,1)
		_SpecColor ("Specular Color", Color) = (0.5, 0.5, 0.5, 1)
		_Shininess ("Shininess", Range (0.01, 1)) = 0.078125
		_MainTex ("Diffuse (RGB), Color Mask (A)", 2D) = "white" {}
		_BumpMap ("Normalmap", 2D) = "bump" {}
		_MaskTex ("Specular (R), Reflection (G)", 2D) = "black" {}
	}

	// Good quality settings
	SubShader
	{
		Tags { "RenderType"="Opaque" }
		LOD 300

		CGPROGRAM
		#pragma surface surf PPL

		sampler2D _MainTex;
		sampler2D _BumpMap;
		sampler2D _MaskTex;
		fixed4 _Color;
		float _Shininess;

		struct Input
		{
			float2 uv_MainTex;
		};

		// Forward lighting
		half4 LightingPPL (SurfaceOutput s, half3 lightDir, half3 viewDir, half atten)
		{
			half3 nNormal = normalize(s.Normal);
			half shininess = s.Gloss * 250.0 + 4.0;

		#ifndef USING_DIRECTIONAL_LIGHT
			lightDir = normalize(lightDir);
		#endif

			// Phong shading model
			//half reflectiveFactor = max(0.0, dot(-viewDir, reflect(lightDir, nNormal)));

			// Blinn-Phong shading model
			half reflectiveFactor = max(0.0, dot(nNormal, normalize(lightDir + viewDir)));

			half diffuseFactor = max(0.0, dot(nNormal, lightDir));
			half specularFactor = pow(reflectiveFactor, shininess) * s.Specular;

			half4 c;
			c.rgb = (s.Albedo * diffuseFactor + _SpecColor.rgb * specularFactor) * _LightColor0.rgb;
			c.rgb *= (atten * 2.0);
			c.a = s.Alpha;
			return c;
		}

		void surf (Input IN, inout SurfaceOutput o)
		{
			half4 tex 	= tex2D(_MainTex, IN.uv_MainTex);
			half4 maps  = tex2D(_MaskTex, IN.uv_MainTex);
			
			o.Albedo 	= lerp(tex.rgb, tex.rgb * _Color.rgb, tex.a);
			o.Alpha 	= _Color.a;
			o.Normal	= UnpackNormal(tex2D(_BumpMap, IN.uv_MainTex));
			o.Specular 	= maps.r;
			o.Gloss 	= _Shininess;
		}
		ENDCG
	}
	
	// Simple quality settings -- drop the bump map
	SubShader
	{
		Tags { "RenderType"="Opaque" }
		LOD 200

		CGPROGRAM
		#pragma surface surf Lambert

		sampler2D _MainTex;
		fixed4 _Color;

		struct Input
		{
			float2 uv_MainTex;
		};

		void surf (Input IN, inout SurfaceOutput o)
		{
			half4 tex 	= tex2D(_MainTex, IN.uv_MainTex);			
			o.Albedo 	= lerp(tex.rgb, tex.rgb * _Color.rgb, tex.a);
			o.Alpha 	= _Color.a;
		}
		ENDCG
	}
	Fallback "Diffuse"
}

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/NGUI/Examples/Models/Orc Armor/Orc Armor.shader

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000