查看: 589|回复: 0
打印 上一主题 下一主题

[其他] 【unity程序】识别并在旁边出现数据资料

[复制链接]
may    

8830

主题

81

听众

7万

积分

首席设计师

Rank: 8Rank: 8

纳金币
52336
精华
343

最佳新人 热心会员 灌水之王 活跃会员 突出贡献 荣誉管理 论坛元老

跳转到指定楼层
楼主
发表于 2015-11-30 00:52:44 |只看该作者 |倒序浏览
  1. using UnityEngine;
  2. using System.Collections;

  3. public class skin : MonoBehaviour {
  4.         public GUISkin myGUISkin;
  5.         private Rect windowRect;
  6.         //private Vector2 pos;
  7.         private bool flag=false;
  8.         //private bool kaiguan=false;
  9.         private Vector3 world;
  10.         Vector3 screenPos;

  11. //        public GameObject a;
  12.         string info ="dfwf";
  13.         // Use this for initialization
  14.         void Start () {
  15.         }
  16.        
  17.         // Update is called once per frame
  18.         void Update () {

  19.                 //if (Input.GetMouseButton (0)) {
  20.                         Vector3 mouseposition = Input.mousePosition;
  21.                         windowRect = new Rect (mouseposition.x+10, mouseposition.y+10, 200, 100);
  22.                 //}
  23.         }
  24.         void DoMyWindow(int windowID){
  25.                 GUI.skin.label.fontSize = 20;
  26.                 GUI.Label (new Rect (10, 10, 110, 110),info);
  27.         }
  28.         void OnGUI(){
  29.                 if (flag) {
  30.                         GUI.skin = myGUISkin;
  31.                         windowRect = GUI.Window (0, windowRect, DoMyWindow, "数据");
  32.                 }
  33.         }

  34.         void OnMouseEnter()
  35.         {
  36.                 flag = true;
  37.         }
  38.         //鼠标移开显示空
  39.         void OnMouseExit()
  40.         {
  41.                 flag = false;
  42.         }
  43. }
复制代码
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-14 14:52 , Processed in 0.388122 second(s), 29 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部