간단 해결
- 해당 Shader에서 CustomEditor 항목을 제거한다
복잡 해결
- 이해중
'Programming > Shader' 카테고리의 다른 글
[Shader] 불 셰이더 만들기 2 : 좀 더 구체적인 불 (0) | 2021.02.18 |
---|---|
[Shader] 불 셰이더 만들기 1 : 흘러가는 형태 (0) | 2021.02.17 |
[Shader] 불 셰이더 만들기 2 : 좀 더 구체적인 불 (0) | 2021.02.18 |
---|---|
[Shader] 불 셰이더 만들기 1 : 흘러가는 형태 (0) | 2021.02.17 |
Shader "Custom/Fire"
{
Properties
{
_MainTex("Albedo (RGB)", 2D) = "white" {} // :: 불 모양
_MainTex2("Albedo (RGB)", 2D) = "white" {} // :: 흘러가는 불 기둥
}
SubShader
{
Tags { "RenderType"="Transparent" "Queue"="Transparent" } // :: 투명도 적용
LOD 200
CGPROGRAM
#pragma surface surf Standard alpha:fade // :: 투명도 적용
sampler2D _MainTex;
sampler2D _MainTex2;
struct Input
{
float2 uv_MainTex;
float2 uv_MainTex2;
};
void surf (Input IN, inout SurfaceOutputStandard o)
{
// :: 2번째의 노이즈를 우선 연산(-y 위로 올라가도록)
fixed4 c = tex2D (_MainTex2, float2(IN.uv_MainTex2.x, IN.uv_MainTex2.y - _Time.y));
// :: cr <= c 텍스쳐(노이즈)의 의존도(투명도?)를 0.5(50%)로 낮춤
// :: 노이즈보다 불 모양을 우선시하라는 것으로 이해
float cr = c * 0.5;
// :: Saturate : 0 이하의 값을 0으로 1 이상의 값을 1로 즉, 이미지 한계 조정
fixed4 d = tex2D(_MainTex, saturate(IN.uv_MainTex + cr));
// :: Emission : Light 영향을 적게
o.Emission = d.rgb;
o.Alpha = d.a; // :: 투명도
}
ENDCG
}
FallBack "Diffuse"
}
[Warning 해결] Could not create a custom UI for the shader... (0) | 2021.03.06 |
---|---|
[Shader] 불 셰이더 만들기 1 : 흘러가는 형태 (0) | 2021.02.17 |
//
// >> 흘러가는 형태의 불
//
Shader "Custom/Fire"
{
Properties
{
_MainTex("Albedo (RGB)", 2D) = "white" {} // :: 불 모양
_MainTex2("Albedo (RGB)", 2D) = "white" {} // :: 흘러가는 불 기둥
}
SubShader
{
Tags { "RenderType"="Transparent" "Queue"="Transparent" } // :: 투명도 적용
LOD 200
CGPROGRAM
#pragma surface surf Standard alpha:fade // :: 투명도 적용
sampler2D _MainTex;
sampler2D _MainTex2;
struct Input
{
float2 uv_MainTex;
float2 uv_MainTex2;
};
void surf (Input IN, inout SurfaceOutputStandard o)
{
fixed4 c = tex2D (_MainTex, IN.uv_MainTex);
fixed4 d = tex2D (_MainTex2, float2(IN.uv_MainTex2.x, IN.uv_MainTex2.y - _Time.y)); // :: -y 위로 흘러가도록
// :: Emission : Light 영향을 적게
// :: c 텍스쳐와 d 텍스쳐를 곱해서 둘이 겹쳐져 흘러가는 것
o.Emission = c.rgb * d.rgb;
o.Alpha = c.a * d.a; // :: 투명도
}
ENDCG
}
FallBack "Diffuse"
}
[Warning 해결] Could not create a custom UI for the shader... (0) | 2021.03.06 |
---|---|
[Shader] 불 셰이더 만들기 2 : 좀 더 구체적인 불 (0) | 2021.02.18 |