点击3D物体出现简介
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TWInroduce : MonoBehaviour {
public bool WindowShow = false;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnMouseDown()
{
Debug.Log("showTW");
if (WindowShow)
WindowShow = false;
else
WindowShow = true;
}
void OnGUI()
{
if (WindowShow)
GUI.Window(0, new Rect(30, 30, 250, 200), MyWindow, "介绍");
}
void MyWindow(int WindowID)
{
GUILayout.Label("海王星(Neptune)是八大行星中的远日行星,按照行星与太阳的距离排列海王星是第八颗行星,直径上第四大行星,质量上第三大行星。" +
"它的亮度仅为7.85等,只有在天文望远镜里才能看到它。由于它那荧荧的淡蓝色光,所以西方人用罗马神话中的海神——尼普顿(Neptune)”的名字来称呼它。在中文里,把它译为海王星。");
}
}