일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- HTML
- C언어 포인터
- vim
- github
- jupyter
- Houdini
- Data Structure
- c# 윈폼
- c# winform
- dart 언어
- c언어
- jupyter lab
- Flutter
- gitlab
- 다트 언어
- Unity
- 포인터
- Algorithm
- Python
- C# delegate
- 구조체
- 도커
- 깃
- 유니티
- c#
- git
- 플러터
- c# 추상 클래스
- docker
- C++
Archives
- Today
- Total
목록unity appdata_full (1)
nomad-programmer
[CG/Unity] Vertex Shader
CGPROGRAM #pragma suface surf Lambert vertex:vert void vert(inout appdata_full v){ // y축으로 1m 만큼 이동 v.vertex.y += 1; } vertex:vert로 버텍스 셰이더가 vert라는 함수 이름으로 시작된다는 것을 #pragma에서 알려주고, void로 시작하는 vert이름의 함수를 만든다. appdata_full이 보인다. 이것은 surf 함수에서 사용했떤 SurfaceOutputStandard처럼, UnityCG.cginc 파일 안에 미리 선언되어 있는 특정한 구조체이다. 이 구조체는 버텍스가 가지고 있는 정보를 구조체로 만든 것이며, 이 구조체를 메뉴얼에서 찾아보면 다음과 같이 설명하고 있다. appdata_base: ..
CG/Unity
2022. 1. 30. 23:49