UGUI—对话框(DialogBox)

作者:追风剑情 发布于:2021-9-27 15:57 分类:Unity3d

示例:对话框

工程截图

111.png

代码


  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. /// <summary>
  7. /// 对话框UI
  8. /// </summary>
  9. public class UIDialogBox : GameEventBehaviour
  10. {
  11. public static UIDialogBox Instance { get; private set; }
  12.  
  13. [SerializeField]
  14. private GameObject mask;
  15. [SerializeField]
  16. private GameObject okButton;
  17. [SerializeField]
  18. private GameObject cancelButton;
  19. [SerializeField]
  20. private Text m_Text;
  21. [SerializeField]
  22. private Text m_TextOk;
  23. [SerializeField]
  24. private Text m_TextCancel;
  25. private Action okCallback = null;
  26. private Action cancelCallback = null;
  27. private float freezeClickTime = -1f;
  28.  
  29. public enum ButtonLayout
  30. {
  31. None, //不显示操作按钮
  32. OK, //只显示确认按钮
  33. OK_Cancel //同时显示确认和取消按钮
  34. }
  35.  
  36. protected override void OnAwake()
  37. {
  38. Instance = this;
  39. }
  40.  
  41. protected override void OnUpdate()
  42. {
  43. if (freezeClickTime <= 0)
  44. return;
  45.  
  46. freezeClickTime -= Time.deltaTime;
  47. if (freezeClickTime <= 0)
  48. {
  49. m_TextOk.text = Config.LAN_BUTTON_SURE;
  50. }
  51. else
  52. {
  53. int cd = Mathf.CeilToInt(freezeClickTime);
  54. m_TextOk.text = string.Format("{0}({1})", Config.LAN_BUTTON_SURE, cd);
  55. }
  56. }
  57.  
  58. public void Close()
  59. {
  60. m_TextOk.text = string.Empty;
  61. m_TextCancel.text = string.Empty;
  62. mask.SetActive(false);
  63. }
  64.  
  65. public void OnClickOK()
  66. {
  67. if (freezeClickTime > 0)
  68. return;
  69.  
  70. Close();
  71. okCallback?.Invoke();
  72. okCallback = null;
  73. cancelCallback = null;
  74. }
  75.  
  76. public void OnClickCancel()
  77. {
  78. Close();
  79. cancelCallback?.Invoke();
  80. cancelCallback = null;
  81. okCallback = null;
  82. freezeClickTime = -1;
  83. }
  84.  
  85. public void SetCancelText(string text)
  86. {
  87. m_TextCancel.text = text;
  88. }
  89.  
  90. public void SetOkText(string text)
  91. {
  92. m_TextOk.text = text;
  93. }
  94.  
  95. public void Show(string text, ButtonLayout layout=ButtonLayout.OK, Action okCallback=null, float freezeClickTime = -1)
  96. {
  97. if (string.IsNullOrEmpty(m_TextOk.text))
  98. m_TextOk.text = "确定";
  99. if (string.IsNullOrEmpty(m_TextCancel.text))
  100. m_TextCancel.text = "取消";
  101. m_Text.text = text + "\n";
  102. m_TextOk.text = Config.LAN_BUTTON_SURE;
  103. mask.SetActive(true);
  104. okButton.SetActive(layout == ButtonLayout.OK || layout == ButtonLayout.OK_Cancel);
  105. cancelButton.SetActive(layout == ButtonLayout.OK_Cancel);
  106.  
  107. RectTransform okRectTransform = okButton.GetComponent<RectTransform>();
  108. if (layout == ButtonLayout.OK_Cancel)
  109. SetAnchoredPositionX(okRectTransform, -121f);
  110. else
  111. SetAnchoredPositionX(okRectTransform, 0f);
  112.  
  113. this.okCallback = okCallback;
  114. this.freezeClickTime = freezeClickTime;
  115. }
  116.  
  117. private void SetAnchoredPositionX(RectTransform rectTransform, float x)
  118. {
  119. Vector2 anchoredPosition = rectTransform.anchoredPosition;
  120. anchoredPosition.x = x;
  121. rectTransform.anchoredPosition = anchoredPosition;
  122. }
  123. }


效果

2222.png

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号