标签:
如果需要处理鼠标点击物体的情况:
using UnityEngine; using System.Collections; public class example : MonoBehaviour { void OnMouseOver() { renderer.material.color -= new Color(0.1F, 0, 0) * Time.deltaTime; } }
标签:
原文地址:http://www.cnblogs.com/sunxun/p/5886941.html