unity中renderer的可以用material和sharedMaterial来访问材质,多个renderer可以公用一个材质,这时sharedMaterial指向同一个材质,修改这个材质后所有renderer都会有所变化。至于用material来访问,按官方文档说法是:
Modifying material
will change the material for this object only.
修改material只会改变当前物体
If the material is used by any other renderers, this will clone the shared material and start using it from now on.
如果材质还被其它renderer使用,会克隆共享的材质
Note:
This function automatically instantiates the materials and makes them unique to this renderer. It is your responsibility to destroy the materials when the game object is being destroyed. Resources.UnloadUnusedAssets also destroys the materials but it is usually only called when loading a new level.
这个函数会自动实例化材质,以便renderer独享该材质实例。需要在对象删除时手动销毁材质。