일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 김양재 목사
- Deep learning
- 빅 데이타
- Machine Learning
- 몽고디비
- data science
- 김양재 목사님
- 딥러닝
- nodeJS
- 통계
- 빅데이터
- probability
- 인공지능
- WebGL
- Big Data
- Artificial Intelligence
- 빅 데이터
- 김양재
- openCV
- No SQL
- 우리들교회
- 확률
- c++
- 빅데이타
- R
- MongoDB
- 주일설교
- 데이터 과학
- Statistics
- node.js
Archives
- Today
- Total
Scientific Computing & Data Science
Display Normal Shader 본문
Shader "Tutorial/Display Normals" {
SubShader {
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
struct v2f {
float4 pos : SV_POSITION;
float3 color : COLOR0;
};
v2f vert (appdata_base v)
{
v2f o;
o.pos = mul (UNITY_MATRIX_MVP, v.vertex);
o.color = v.normal * 0.5 + 0.5;
return o;
}
half4 frag (v2f i) : COLOR
{
return half4 (i.color, 1);
}
ENDCG
}
}
Fallback "VertexLit"
}
'CG & Video Games > Unity 3D' 카테고리의 다른 글
Dynamic Images (0) | 2013.05.26 |
---|---|
VertextLit Shader (0) | 2013.05.26 |
Rendering with Different Cameras (0) | 2013.05.26 |
Movie Texture Script (0) | 2013.05.26 |
Random Number Generation in C# (0) | 2013.05.25 |
Comments