unity3d 模型怎么双面显示?

unity3d 模型怎么双面显示


蛊毒传说
浏览 7081回答 1
1回答

精慕HU

材质球使用双面shader,网上很多12345678910111213141516171819202122232425262728293031Shader "DoubleSide/Diffuse" {    Properties     {        _Color ("Main Color", Color) = (1,1,1,1)        _MainTex ("Base (RGB)", 2D) = "white" {}    }    SubShader    {           Tags { "Queue" = "Transparent" }        Material            {                Diffuse [_Color]                Ambient (1,1,1,1)            }        Pass        {                                   Lighting On            Cull off            Blend SrcAlpha OneMinusSrcAlpha             SetTexture [_MainTex]             {                constantColor [_Color]                Combine texture * primary DOUBLE, texture * constant             }        }   }   FallBack "Diffuse", 1}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Unity 3D