IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Renderer.material与Renderer.sharedMaterial的区别 -> 正文阅读

[游戏开发]Renderer.material与Renderer.sharedMaterial的区别

Renderer.materialRenderer.sharedMaterial的区别

material

Returns the first instantiated Material assigned to the renderer.

Modifying material will change the material for this object only.

If the material is used by any other renderers, this will clone the shared material and start using it from now on.

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.

返回分配给渲染器的第一个实例化材质。

修改材质只会更改此对象的材质。

如果该材质被任何其他渲染器使用,这将克隆共享材质并从现在开始使用它。

笔记: 此函数自动实例化材质并使它们对于此渲染器是唯一的。在销毁游戏对象时销毁材料是您的责任。 Resources.UnloadUnusedAssets 也会破坏材质,但通常仅在加载新关卡时调用。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour
{
    Material m_Material;

    void Start()
    {
        //从游戏对象的渲染器中获取材质
        m_Material = GetComponent<Renderer>().material;
        print("Materials " + Resources.FindObjectsOfTypeAll(typeof(Material)).Length);
    }

    void Update()
    {
        if (Input.GetKeyDown(KeyCode.A))
        {
            //输出游戏对象被销毁前的材质数量
            print("Materials " + Resources.FindObjectsOfTypeAll(typeof(Material)).Length);
            //销毁游戏对象
            Destroy(gameObject);
        }
    }

    void OnMouseOver()
    {
        // 当鼠标悬停在游戏对象上时更改游戏对象的颜色
        m_Material.color = Color.red;
    }

    void OnMouseExit()
    {
        //当鼠标退出游戏对象时将颜色改回白色
        m_Material.color = Color.white;
    }

    void OnDestroy()
    {
        //销毁实例
        Destroy(m_Material);
        //输出材料数量以显示实例是否被删除
        print("Materials " + Resources.FindObjectsOfTypeAll(typeof(Material)).Length);
    }
}

sharedMaterial

Modifying sharedMaterial will change the appearance of all objects using this material, and change material settings that are stored in the project too.

It is not recommended to modify materials returned by sharedMaterial. If you want to modify the material of a renderer use material instead.

修改 sharedMaterial 将改变所有使用此材质的对象的外观,并更改存储在项目中的材质设置。 不建议修改 sharedMaterial 返回的材质。

如果要修改渲染器的材质,请改用material

总结

Renderer.sharedMaterial:当多个Renderer共用一个材质时,修改Renderer.sharedMaterial将修改所有引用它的Renderer。
Renderer.material:修改Renderer.material只会影响Renderer本身。

运行实例


using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;

public class Change_T : MonoBehaviour
{

	public GameObject Cube;
	//申请GameObject类型的变量 储存Cube模型

	public Texture Card_01;
	//申请Texture类型的变量  储存Card_01图片

	// Use this for initialization
	void Start()
	{
		
	}

	// Update is called once per frame
	void Update()
	{
		
	}

	//换贴图的按钮函数
	public void Button_T()
	{	
		Cube.GetComponent<Renderer>().sharedMaterial.mainTexture = Card_01;
		//将Cube模型材质的主贴图替换为Card_01
	}
}

image-20220120174018022

由图可见,此时Cube模型的材质是Mat_Red,是没有贴图的;我们运行一次并按下Button按钮可见,Mat_Red的贴图已经换成了Card_01

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-01-24 11:15:39  更:2022-01-24 11:18:11 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 18:33:05-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码