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;
} } }
- 将该脚本挂载到目标物上,运行,通过设置按键改变颜色即可
- 效果如下图所示
上一篇: 傲游浏览器的收藏夹找不到了的两种解决办法
下一篇: unity中触摸改变物体的移动缩放