Posts 유니티 쉐이더 - 프로퍼티 메모
Post
Cancel

유니티 쉐이더 - 프로퍼티 메모

Memo


  • 자꾸만 까먹어서 메모
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Properties
{
    _MyColor("MyColor", Color) = (1,1,1,1)

    _MyVector("My Vector", Vector) = (0,0,0,0)

    _MyRange("My Range", Range(0, 1)) = 1

    _MyFloat("My float", Float) = 0.5

    _MyInt("My Int", Int) = 1

    _MyTexture2D("Texture2D", 2D) = "white" {}

    _MyTexture3D("Texture3D", 3D) = "white" {}

    _MyCubemap("Cubemap", CUBE) = "" {}
}
This post is licensed under CC BY 4.0 by the author.