标签:unity3d unity3d游戏开发 unity3d教程 unity3d培训
欢迎来到unity学习、unity培训、unity企业培训教育专区,这里有很多U3D资源、U3D培训视频、U3D教程、U3D常见问题、U3D项目源码,我们致力于打造业内unity3d培训、学习第一品牌。
1.首先创建一个GUIText对象。
2.在Project面板中新建一个C#脚本命名为FadingMessage,双击该脚本进行编辑,添加如下代码。
using UnityEngine;
using System.Collections;
public class FadingMessage : MonoBehaviour
{
float DURATION = 2.5f;
// Update is called once per frame
void Update()
{
if (Time.time > DURATION)
{
Destroy(gameObject);
}
//guiText.text = Time.time.ToString();
Color newColor = guiText.material.color;
float proportion = (Time.time / DURATION);
newColor.a = Mathf.Lerp(1, 0, proportion);
guiText.material.color = newColor;
}
更多精彩请点击 http://www.gopedu.com/
标签:unity3d unity3d游戏开发 unity3d教程 unity3d培训
原文地址:http://gopedu.blog.51cto.com/9609377/1577198