レンダリングモードを変更すると、マテリアルに変更が適用されます。マテリアルのレンダリングモードを単一の C# API で変更することはできませんが、コードで同じ変更を行うことができます。
レンダリングモードを変更したときの変更点を確認するには、以下を行います。
switch (blendMode)
{
case BlendMode.Opaque:
// Changes associated with Opaque Rendering Mode are here
break;
case BlendMode.Cutout:
// Changes associated with Cutout Rendering Mode are here
break;
case BlendMode.Fade:
// Changes associated with Fade Rendering Mode are here
break;
case BlendMode.Transparent:
// Changes associated with Transparent Rendering Mode are here
break;
}