MiniGame-PushPush/Assets/GUI PRO Kit - Casual Game/ResourcesData/Shader & Materials/MobileAdditive.shader
villaingames fc0b8b9299 에셋 추가
- UI 에셋 (사용할 부분만 옮겨서 정리 필요)
- sky 에셋
2023-10-09 20:04:31 +09:00

25 lines
559 B
Plaintext

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
}
}
}
}
}