欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Unity中通过按键改变物体颜色

程序员文章站 2022-06-11 09:11:22
...

 1. using UnityEngine; using System.Collections;

    public class ChangeColor : MonoBehaviour {

        // Use this for initialization  void Start () {         }       // Update
    is called once per frame    void Update () {
            if (Input.GetKeyDown(KeyCode.A))
            {
                this.GetComponent<MeshRenderer>().material.color = Color.red;
            }
            if (Input.GetKeyDown(KeyCode.B))
            {
                this.GetComponent<MeshRenderer>().material.color = Color.yellow;
            }   } }
  1. 将该脚本挂载到目标物上,运行,通过设置按键改变颜色即可
  2. 效果如下图所示
    Unity中通过按键改变物体颜色
相关标签: unity 改变颜色