Unity中Shader特性PerRendererData

文章目录


前言

Unity中Shader特性PerRendererData


一、优化前是对使用了相同材质球的不同物体间shader分别设置,比较消耗性能

这里在shader中使用一个Color属性进行测试

复制代码
Shader"MyShader/P1_1_3"
{
    Properties
    {
        //命名要按标准来,这个属性才可以和Unity组件中的属性产生关联
        //比如说,在更改 Image 的源图片时,同时更改这个
        [PerRendererData]_MainTex("MainTex",2D) = "white"{}
        
        [PerRendererData]_Color("Color",color) = (1,1,1,1)
    }
    SubShader
    {
        //更改渲染队列(UI的渲染队列一般是半透明层的)
        Tags {"Queue" = "TransParent"}
        //混合模式
        Blend SrcAlpha OneMinusSrcAlpha
        Pass
        {
            CGPROGRAM
            #pragma vertex  vert
            #pragma fragment frag
            #include "UnityCG.cginc"
            //存储 应用程序输入到顶点着色器的信息
            struct appdata
            {
                //顶点信息
                float4 vertex:POSITION;

                float2 uv : TEXCOORD;
            };
            //存储 顶点着色器输入到片元着色器的信息
            struct v2f
            {
                //裁剪空间下的位置信息
                float4 pos:SV_POSITION;
                float2 uv : TEXCOORD;
            };
            
            sampler2D _MainTex;
            fixed4 _Color;
            v2f vert(appdata v)
            {
                v2f o;
                //把顶点信息转化到裁剪坐标下
                o.pos = UnityObjectToClipPos(v.vertex);
                o.uv = v.uv;
                return o;
            }
            fixed4 frag(v2f i) : SV_Target
            {
                fixed4 mainTex = tex2D(_MainTex,i.uv);
                return  mainTex * _Color;
            }
            
            ENDCG
        }
    }
}

测试脚本

复制代码
public class ShaderMaterialPropertyBlockTest : MonoBehaviour
    {
        [Header("生成的对象")] public GameObject gameObj;
        [Header("生成数量")] public int count = 100;
        [Header("生成范围")] public float range = 10;

        private GameObject [] gameObjects;
        private MaterialPropertyBlock prop;
        
        void Start()
        {
            gameObjects = new GameObject[count];
            prop = new MaterialPropertyBlock();

            for (int i = 0;i < count;i++) 
            {
                //随机位置并生成对象
                Vector2 pos = Random.insideUnitCircle * range;
                GameObject go = Instantiate(gameObj, new Vector3(pos.x, 0, pos.y),Quaternion.identity);
                gameObjects[i] = go;
            }
        }

        
        void Update()
        {
            //优化前,直接修改Shader中暴露的属性
            for (int i = 0;i < gameObjects.Length;i++)
            {
                float r = Random.Range(0f,1f);
                float g = Random.Range(0f,1f);
                float b = Random.Range(0f,1f);
                Color newColor = new Color(r, g, b, 1);
                gameObjects[i].GetComponentInChildren<MeshRenderer>().material.SetColor("_Color",newColor);
            }
            
            
        }
    }

效果(window->Analysis->Profilte):

二、使用[PerRendererData]标签,可以在脚本中使用SetPropertyBlock()对使用同一材质球的不同物体进行修改其Shader属性

测试脚本

复制代码
public class ShaderMaterialPropertyBlockTest : MonoBehaviour
    {
        [Header("生成的对象")] public GameObject gameObj;
        [Header("生成数量")] public int count = 100;
        [Header("生成范围")] public float range = 10;

        private GameObject [] gameObjects;
        private MaterialPropertyBlock prop;
        
        void Start()
        {
            gameObjects = new GameObject[count];
            prop = new MaterialPropertyBlock();

            for (int i = 0;i < count;i++) 
            {
                //随机位置并生成对象
                Vector2 pos = Random.insideUnitCircle * range;
                GameObject go = Instantiate(gameObj, new Vector3(pos.x, 0, pos.y),Quaternion.identity);
                gameObjects[i] = go;
            }
        }

        
        void Update()
        {
            //优化前,直接修改Shader中暴露的属性
            /*for (int i = 0;i < gameObjects.Length;i++)
            {
                float r = Random.Range(0f,1f);
                float g = Random.Range(0f,1f);
                float b = Random.Range(0f,1f);
                Color newColor = new Color(r, g, b, 1);
                gameObjects[i].GetComponentInChildren<MeshRenderer>().material.SetColor("_Color",newColor);
            }*/
            
            //优化后,使用MaterialPropertyBlock方案
            //该方案需要在Shader暴露属性中加上  [PerRendererData] 标签
            //这个是配合 SetPropertyBlock(prop);来使用的
            //这个可以用来更改同样材质球,都是不同物体的Shader属性
            for (int i = 0;i < gameObjects.Length;i++)
            {
                float r = Random.Range(0f,1f);
                float g = Random.Range(0f,1f);
                float b = Random.Range(0f,1f);
                Color newColor = new Color(r, g, b, 1);

                var mr = gameObjects[i].GetComponentInChildren<MeshRenderer>();
                mr.GetPropertyBlock(prop);
                prop.SetColor("_Color",newColor);
                mr.SetPropertyBlock(prop);
            }
        }
    }

优化后效果:

相关推荐
HahaGiver66610 小时前
Unity与Android原生交互开发入门篇 - 打开Unity游戏的设置
android·unity·交互
@LYZY12 小时前
Unity TextMeshPro 文本对齐方式详解
unity·游戏引擎·textmeshpro·tmp
在路上看风景12 小时前
2.1 ShaderLab - 渲染状态
unity
AA陈超14 小时前
虚幻引擎5 GAS开发俯视角RPG游戏 P07-06 能力输入的回调
c++·游戏·ue5·游戏引擎·虚幻
一线灵18 小时前
跨平台游戏引擎 Axmol-2.9.1 发布
游戏引擎
地狱为王21 小时前
Unity使用RVM实现实时人物视频抠像(无绿幕)
unity·游戏引擎·音视频
HahaGiver6661 天前
Unity与Android原生交互开发入门篇 - 打开Android的设置
android·java·unity·游戏引擎·android studio
野奔在山外的猫1 天前
【解决】解决方案内存在对应命名空间,但程序引用显示无该命名空间问题
unity
B0URNE1 天前
【Unity基础详解】(5)Unity核心:Coroutines协程
unity·游戏引擎
野奔在山外的猫2 天前
【案例】程序化脚本生成
unity