How to transparent Unity3D custom shader?

Your script is probably trying to access a property named _Color to set its alpha value, but there is no _Color property on this shader, so the script fails. Also the shader is not set up to render transparency, so we’ll need to fix that. Shader properties are kind of like the public properties you expose on C# classes: … Read more