当前位置:   article > 正文

NGUI:HUD Text(头顶伤害漂浮文字)

模型头顶飘字

HUD Text

很早之前就有闻于NGUI中的HUD Text插件,今天得以尝试,看了会儿官方的文档,楞是没给看明白,官方的ReadMe.txt写的使用方法如下:

官网Usage

  1. 1. Attach the HUDText script to a game object underneath your UIRoot and set the font it should use.
  2. 2. To make it follow an object drawn with another camera, attach UIFollowTarget to the same object and set its target.
  3. 3. From code, use HUDText's Add() function to add new floating text entries.

使用方法

看过它的Example之后自己动手写了个简单的demo

操作步骤

1、新建Scene,创建一个Cube,添加脚本UseHUD.cs

2、建立NGUI,把NGUI放在2DUI layer

3、在NGUI的Camera上建一个空的GameObject,绑定上脚本HUDRoot.cs

4、打开UseHUD.cs,代码如下:

示例代码

  1. using UnityEngine;
  2. using System.Collections;
  3. /// <summary>
  4. /// 类名描述:如何使用HUD Text
  5. /// 作用:把这个脚本绑定在需要使用HUD的GameObject上面,
  6. /// 日期:2013-09-16
  7. /// 版本:v0.1
  8. /// 创建者:赵青青
  9. /// 修改者:赵青青
  10. /// </summary>
  11. [AddComponentMenu("GameName/UseHUDExample")]
  12. public class UseHUD : MonoBehaviour
  13. {
  14. public Transform m_target;//HUD字体出现的位置
  15. public GameObject m_hudTextPrefab;//HUD字体 prefab,不可为空
  16. HUDText m_hudText = null;//HUD字体
  17. // 初始化时调用
  18. void Start ()
  19. {
  20. if (HUDRoot.go == null) {
  21. GameObject.Destroy (this);
  22. return;
  23. }
  24. if (m_target == null) {
  25. m_target=this.transform;
  26. Vector3 mpos = this.transform.position;
  27. mpos.y += 2;
  28. m_target.position = mpos;
  29. }
  30. //添加hud text到HUDRoot结点下
  31. GameObject child = NGUITools.AddChild (HUDRoot.go, m_hudTextPrefab);
  32. //获取HUDText
  33. m_hudText = child.GetComponent<HUDText> ();
  34. //添加UIFollow脚本
  35. child.AddComponent<UIFollowTarget> ().target = m_target;
  36. }
  37. // 每帧调用此函数一次
  38. void Update ()
  39. {
  40. if (Input.GetMouseButton (0)) {
  41. m_hudText.Add ("+100", Color.red, 0);
  42. }
  43. if (Input.GetMouseButton (1)) {
  44. m_hudText.Add ("-30", Color.green, 0);
  45. }
  46. if (Input.GetMouseButton (2)) {
  47. m_hudText.Add ("漂亮!", Color.cyan, 0);
  48. }
  49. }
  50. void OnClick ()
  51. {
  52. if (m_hudText != null) {
  53. m_hudText.Add ("HUD TEXT", Color.red, 1.0f);
  54. }
  55. }
  56. }

飘字效果

点击运行,点击屏幕上的cube,看到cube头顶飘出HUD 字体,Good!

 image

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

闽ICP备14008679号