当前位置:   article > 正文

unity--鼠标放上显示物体信息和物体高光效果_unity实现鼠标移动到物体上展示物体的属性信息

unity实现鼠标移动到物体上展示物体的属性信息

鼠标放在物体上显示信息代码

  1. using UnityEngine;
  2. using System.Collections;
  3. public class info : MonoBehaviour {
  4. bool isShowInfo;
  5. public GUIStyle _GUIStyle;
  6. public float Offset = 15;
  7. public string Info = "名字";
  8. // Use this for initialization
  9. void Start () {
  10. isShowInfo = false;
  11. }
  12. void OnMouseEnter()
  13. {
  14. isShowInfo = true;
  15. // print("onmouseenter");
  16. }
  17. void OnMouseExit()
  18. {
  19. isShowInfo = false;
  20. // print("onmouseexit");
  21. }
  22. // Update is called once per frame
  23. void Update () {
  24. }
  25. void OnGUI()
  26. {
  27. if (isShowInfo)
  28. {
  29. print("123");
  30. GUI.Label(new Rect(Input.mousePosition.x + Offset, Screen.height - Input.mousePosition.y, 100, 100), Info, _GUIStyle);
  31. }
  32. }
  33. }

物体高光效果使用的插件实现HighlightingSystem




demo案例

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/542900
推荐阅读
相关标签
  

闽ICP备14008679号