main menu and other UI

This commit is contained in:
2026-01-29 16:31:39 +05:30
parent 17b8f48e8f
commit 06a2148532
7437 changed files with 3983588 additions and 16 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
}
}
}
}
}