Shader "Xdroid/CubeLightmap" {
Properties {
_Color ("Main Color", Color) = (1,1,1,1)
_ReflectColor ("Reflection Color", Color) = (1,1,1,0.5)
_MainTex ("Base (RGB) RefStrength (A)", 2D) = "white" {}
_Cube ("Reflection Cubemap", Cube) = "_Skybox" { TexGen CubeReflect }
_LightMap ("Lightmap (RGB)", 2D) = "lightmap" { LightmapMode }
}
SubShader {
LOD 200
Tags { "RenderType"="Opaque" }
CGPROGRAM
#pragma surface surf Lambert
sampler2D _MainTex;
samplerCUBE _Cube;
sampler2D _LightMap;
fixed4 _Color;
fixed4 _ReflectColor;
struct Input {
float2 uv_MainTex;
float3 worldRefl;
float2 uv2_LightMap;
};
void surf (Input IN, inout SurfaceOutput o) {
fixed4 tex = tex2D(_MainTex, IN.uv_MainTex);
fixed4 c = tex * _Color;
o.Albedo = c.rgb;
half4 lm = tex2D(_LightMap,IN.uv2_LightMap);
fixed4 reflcol = texCUBE (_Cube, IN.worldRefl);
reflcol *= tex.a;
o.Emission = lm.rgb * reflcol.rgb * _ReflectColor.rgb;
o.Alpha = reflcol.a * _ReflectColor.a * lm.a;
}
ENDCG
}
FallBack "Reflective/VertexLit"
}
详细解决方案
【原】Shader:Diffuse+CubeMap+LightMap
热度:10 发布时间:2023-12-08 08:39:53.0
今天因为项目需求,写了个同时支持CubeMap和LightMap的Shader:
(拿坦克为例如下)有需要的童鞋可以直接拿来用。
相关解决方案
- 求Unity3D shader lab可能shader model的资料(语言不限)
- 求Unity3D shader lab或者shader model的资料(语言不限)解决方案
- 模模糊糊 shader
- shader 画图出现“位错”解决方案
- Unity3D Shader 入门第一天
- Unity Shader--模拟微信跳一跳中方块的弹性效果
- Unity Shader--简单的扇形扫描效果
- Unity Shader--关于顶点偏移的一点发现
- Unity Shader--双面及碎化
- Unity Shader入门精要学习笔记 - 第5章 开始 Unity Shader 学习之旅
- Unity Shader入门精要学习笔记 - 第4章 学习 Shader 所需的数学基础
- Unity Shader入门精要学习笔记 - 第3章 Unity Shader 基础
- Shader Language
- 第一篇 初识庐山真面目 ——Unity 3D Shader(4)
- 第一篇 初识庐山真面目 ——Unity 3D Shader(3)
- 第一篇 初识庐山真面目 ——Unity 3D Shader(2)
- 第一篇 初识庐山真面目 ——Unity 3D Shader(1)
- {UE4]Game files required to initialize the global shader library are missing from
- unity shader 基础 之 九十 渲染路径、阴影、高级纹理
- unity shader 之基础 七八 纹理采样、透明度渲染
- shader 入门精要第四章 数学基础
- unity 之 Shader
- unity 之 shader 二
- Lightmap Directional Modes
- Shader(一)------ShaderLab
- Unity Editor -Cubemap
- NaN and infinity literals not allowed by shader model 错误解决方法
- shader Properties type
- 【原】Shader:Diffuse+CubeMap+LightMap
- Vertex Shader Pixel Shader 介绍