Hey guys, I found this shader and I am just wondering if it would work fine on the iPhone version of unity?
If not, is there a similar script that would work?
Thanks.
http://www.unifycommunity.com/wiki/index.php?title=AlphaSelfIllum
Shader "My Shaders/AlphaSelfIllum" {
Properties {
_Color ("Color Tint", Color) = (1,1,1,1)
_MainTex ("SelfIllum Color (RGB) Alpha (A)", 2D) = "white"
}
Category {
Lighting On
ZWrite Off
Cull Back
Blend SrcAlpha OneMinusSrcAlpha
Tags {Queue=Transparent}
SubShader {
Material {
Emission [_Color]
}
Pass {
SetTexture [_MainTex] {
Combine Texture * Primary, Texture * Primary
}
}
}
}
}