added gui asset

This commit is contained in:
Lorenzo
2022-08-26 20:56:55 +02:00
parent a50eba6029
commit 16fbf19eef
2948 changed files with 3787843 additions and 25718 deletions

View File

@@ -0,0 +1,25 @@
Shader "Mobile/Particles/Additive2" {
Properties {
_MainTex ("Particle Texture", 2D) = "white" {}
}
Category {
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
Blend SrcAlpha One
Cull Off Lighting Off ZWrite Off Fog { Color (0,0,0,0) }
BindChannels {
Bind "Color", color
Bind "Vertex", vertex
Bind "TexCoord", texcoord
}
SubShader {
Pass {
SetTexture [_MainTex] {
combine texture * primary
}
}
}
}
}