일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WebGL
- R
- 김양재 목사님
- MongoDB
- 데이터 과학
- 빅 데이터
- c++
- 김양재 목사
- 김양재
- 빅데이터
- Statistics
- 몽고디비
- Machine Learning
- 통계
- 주일설교
- node.js
- 빅 데이타
- 딥러닝
- data science
- openCV
- No SQL
- 인공지능
- Deep learning
- 빅데이타
- Artificial Intelligence
- probability
- Big Data
- 우리들교회
- nodeJS
- 확률
- Today
- Total
Scientific Computing & Data Science
VertextLit Shader 본문
Shader "Example/VertexLit" {
Properties {
_Color ("Main Color", Color) = (1,1,1,0.5)
_SpecColor ("Spec Color", Color) = (1,1,1,1)
_Emission ("Emmisive Color", Color) = (0,0,0,0)
_Shininess ("Shininess", Range (0.01, 1)) = 0.7
_MainTex ("Base (RGB)", 2D) = "white" { }
}
SubShader {
Pass {
Material {
Diffuse [_Color]
Ambient [_Color]
Shininess [_Shininess]
Specular [_SpecColor]
Emission [_Emission]
}
Lighting On
SeparateSpecular On
SetTexture [_MainTex] {
constantColor [_Color]
Combine texture * primary DOUBLE, texture * constant
}
}
}
}
'CG & Video Games > Unity 3D' 카테고리의 다른 글
Script for Touch & Drag an Object (0) | 2013.05.26 |
---|---|
Dynamic Images (0) | 2013.05.26 |
Display Normal Shader (0) | 2013.05.26 |
Rendering with Different Cameras (0) | 2013.05.26 |
Movie Texture Script (0) | 2013.05.26 |